$(document).ready(function(){
 
	$(".zhao ul li a").hover(function() {
	$(this).next("div.bg").stop(true, true).animate({opacity: "show", bottom: "-85"}, "slow");
	}, function() {
	$(this).next("div.bg").animate({opacity: "hide", bottom: "-95"}, "fast");
	});
	
	
	$(".ww a").hover(function() {
	$(this).next("div").stop(true, true).animate({opacity: "show", bottom: "-85"}, "slow");
	}, function() {
	$(this).next("div").animate({opacity: "hide", bottom: "-95"}, "fast");
	});
 
});