function mainmenu(){
jQuery(" .mm li ul").css({display: "none"}); // Opera Fix


jQuery('.mm li').hover(function() {

	jQuery(this).find('ul:first').attr("style", "z-index: 600;");
	
	jQuery(this).find('ul:first').stop().animate({height:'100%'},{queue:false, duration:600, easing: 'easeOutBounce'});
	jQuery(this).find('ul:first').css({display: "block"});
	}, function() {
		jQuery(this).find('ul:first').stop().animate({height:'0px'},{queue:false, duration:600, easing: 'easeOutBounce'});
		jQuery(this).find('ul:first').css({display: "none"});

});

		
}

