$(function(){
	// zen button hover
	$("li.submenu").hover(function(){
		$(this).find(".level2").stop().animate({ height:'60px', opacity:'1'}, "slow", '') 
	}, function(){
		$(this).find(".level2").stop().animate({ height:'0px', opacity:'0'}, "slow", '')
	});
});
