$(document).ready(function(){

$('.infiniteCarousel').infiniteCarousel(); 

$('#s1').cycle();

$("#primary_nav .container > ul li").hoverIntent({
	sensitivity: 7, // number = sensitivity threshold (must be 1 or higher)
	interval: 100,   // number = milliseconds of polling interval
	over: showNav,  // function = onMouseOver callback (required)
	timeout: 200,   // number = milliseconds delay before onMouseOut function call
	out: hideNav    // function = onMouseOut callback (required)
});



function showNav(){
  	$(this).children("ul:first").fadeIn("slow");
	  $(this).children("a:first").addClass( 'navOn' );   
}
  
function hideNav(){
  	$(this).children("ul:first").fadeOut("slow");
	  $(this).children("a:first").removeClass( 'navOn' );     	 	
}

});
