$(document).ready(function(){
	$(".submenuul").fadeTo(100,0.9);
	//菜单动画
	$(".menuul  > li").hover(
	  function () {
		$(this).addClass("hover");
		$(this).children(".submenuul").show();
	  },
	  function () {
		$(this).removeClass("hover");
		$(this).children(".submenuul").hide();
	  }
	); 
});