 

jQuery(document).ready(function(){
	
	   
		jQuery('.nav_item').hover(function(){
				jQuery(this).children('ul').fadeIn();
			},function(){
				jQuery('.topnav').next('ul').hide();
			});

		//jQuery('#mycarousel').jcarousel();
		
});
