/* Activate jQuery Plugins */
$(document).ready(function(){

	// Domain Ticker
	$(".domain_ticker").newsTicker();

	// Set Up Tool Tips
	$('A.help').Tooltip({ extraClass: "pretty", track: false, delay: 250, showURL: false, showBody: " - ", fade: 250 });
	
	//INPUT Hints
	$('input[@title]').example(function() { return $(this).attr('title'); }, {className: 'example'});
	
	//tabs
	//$('#container-1 > ul').tabs();
	$('#container-1 > ul').tabs({ fx: { opacity: 'toggle' } });

	// Zebra Striping 1
	//$('.box_5 .box_5_row:odd').addClass('box_5_alt');

	// jCarousel Lite
	//$(".jCarouselLite_1").jCarouselLite({ btnNext: ".next", btnPrev: ".prev" });


});