$(document).ready(function() {		

    $("#mycarousel").jcarousel({
		wrap: 'circular',
		visible: 1,
		start: 1,
		scroll: 1,
		wrap: 'both'
    });
    
 $('#mainmenu > li:has(ul)').hover(
	function(){
		$(this).find("ul").stop(true, true).fadeIn(200);
	},
	function(){
		$(this).find("ul").stop(true, true).fadeOut(50);
	}
);
    
    
});
