$(document).ready(function(){
			
	//Declare functions slideRightShow, slideRightHide
	
	//hide all subnav ul under primary nav
	$("#primaryNav li ul").hide();
	
	var navTimers = []; 
	
	$("#primaryNav li").hover(
		 function () {  
            var id = jQuery.data( this );  
             var $this = $( this );  
             navTimers[id] = setTimeout( function() {  
                 $this.children( 'ul' ).fadeIn( 100 );  
                 navTimers[id] = "";  
             }, 300 );  
         },  
		 function () {  
             var id = jQuery.data( this );  
             if ( navTimers[id] != "" ) {  
                 clearTimeout( navTimers[id] );  
             } else {  
                 $( this ).children( "ul" ).fadeOut( 400 );  
             }  
         }  
	);
	
	$("#registrationButton").addClass("noHover").hover(
		function(){ $(this).find("span").fadeIn();},
		function(){ $(this).find("span").fadeOut();}
	);
	
	$("#featuredList ul li a").hover(
		function(){ $(this).find("span").fadeIn();},
		function(){ $(this).find("span").fadeOut();}
	);
	
});	


