function mainmenu(){
	$('#mainMenu ul ul').css({display: 'inline'});
	$('#mainMenu ul ul li').css({display: 'none'});

    $('#mainMenu ul li').hover(function(){
        $(this).find('li:first-child').stop(true, true).delay(100).show(300, function(){
        	$(this).nextAll('li').stop(true, true).slideDown(300);
        	});
	}, function(){
    	$(this).find('li').stop(true, true).fadeOut(200);
	});
}
