				
//-----------------------------------------------------------
// FlyoutMenu

		  
  jQuery(document).ready(function(){

	jQuery(".mainnavitem").hover(
		function(){
			 jQuery(this).find("span").stop().css({'display': 'none', 'height':'auto', 'overflow':'visible'}).slideDown(100);
		},
		function(){
			jQuery(this).find("span").stop().slideUp(100);
		}
	); 

});
