var $j = jQuery.noConflict();// this is requires so that there is no conflict between Jquery & Prototype.  See http://docs.jquery.com/Using_jQuery_with_Other_Libraries

$j(document).ready(function(){ 
		
		$j("#midbodypage a").hover(  
		function () {  
			if ($j(this).is(":animated")) {  
				$j(this).stop().animate({color:"#0ba4dd"}, 400);  
			}else{  
				$j(this).animate({color:"#0ba4dd"}, 400);  
			}  
		},  
		
		function () {  
			if ($j(this).is(":animated")) {  
				$j(this).stop().animate({color:"#ff00cc"}, 400);  
			}else{  
				$j(this).animate({color:'#ff00cc'}, 400);  
			}  
		});   
		
		
		
		//Header Color Change Links
		$j("#header a").hover(  
		function () {  
			if ($j(this).is(":animated")) {  
				$j(this).stop().animate({color:"#0ba4dd"}, 400);  
			}else{  
				$j(this).animate({color:"#0ba4dd"}, 400);  
			}  
		},  
		
		function () {  
			if ($j(this).is(":animated")) {  
				$j(this).stop().animate({color:"#bbbbbb"}, 400);  
			}else{  
				$j(this).animate({color:'#bbbbbb'}, 400);  
			}  
		});
		
			//HomePage SlideInfo Color Change Links
		$j(".slidebox a").hover(  
		function () {  
			if ($j(this).is(":animated")) {  
				$j(this).stop().animate({color:"#ff00cc"}, 400);  
			}else{  
				$j(this).animate({color:"#ff00cc"}, 400);  
			}  
		},  
		
		function () {  
			if ($j(this).is(":animated")) {  
				$j(this).stop().animate({color:"#0ba4dd"}, 400);  
			}else{  
				$j(this).animate({color:'#0ba4dd'}, 400);  
			}  
		});   
		
		
		//Footer Color Change Links
		$j("#footer a").hover(  
		function () {  
			if ($j(this).is(":animated")) {  
				$j(this).stop().animate({color:"#0ba4dd"}, 400);  
			}else{  
				$j(this).animate({color:"#0ba4dd"}, 400);  
			}  
		},  
		
		function () {  
			if ($j(this).is(":animated")) {  
				$j(this).stop().animate({color:"#bbbbbb"}, 400);  
			}else{  
				$j(this).animate({color:'#bbbbbb'}, 400);  
			}  
		});   	         
});
