	
	  $(function() {
			$("ul#nav > li").hover(function() {
			  $(this).find("ul").stop(true, true).slideDown('slow','easeOutBounce','easeInOutCirc');
			}, function() {
			  $(this).find("ul").stop(true, true).slideUp('slow','easeOutBounce','easeInOutCirc');
			});
			});
			
			
			 $(function() {
			$("ul#main_menu > li").hover(function() {
			  $(this).find("ul").stop(true, true).show('slow','easeOutBounce','easeInOutCirc');
			}, function() {
			  $(this).find("ul").stop(true, true).hide('slow','easeOutBounce','easeInOutCirc');
			});
			});
