var $j = jQuery.noConflict();
$j(document).ready(function(){
	// $j(document).pngFix(); 
	
	$j("#side-nav li:even a").addClass("blue-01");
	$j("#side-nav li:odd a").addClass("blue-02");
	//$.cookie(’rightCol’, ‘expanded’);
	
	
	// Input Swap
	$j("input, textarea").focus(function(){
		$j(this).addClass("active");
		  if( this.value == this.defaultValue ) {
			this.value = "";
		}
	});
	$j("input, textarea").blur(function(){
		$j(this).removeClass("active");
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});
	
	// Partners (Text Ticker)
	//$j("#ticker-001").newsticker();
	$j(function(){ 
		$j("#ticker-001").liScroll({travelocity: 0.05}); 
	});
	
	// Partners (Images)
	$j("#ticker-002").newsticker();
	$j(".alpha").css("opacity",0.50);
	
	// If you need to add an image to the rotation just create a new class in screen.css and add it to the below code. 
	// There is a psd file in ..\assets(do_not_upload)\body-.psd
	$j("body").addRandomClass([ "body-swimming", "body-basketball", "body-baseball", "body-soccer", "body-football" ]);
	
});
