// 棉文化底部导航js文件
$(document).ready(function(){
	$("#nav > .navBg").css("opacity","0.8");
	$("#nav li").each(function(){
		$(this).hover(function(){
			$(this).find("span").animate({"top":0}, 150, 'easeInOutCubic');						   
		},function(){
			$(this).find("span").animate({"top":-25}, 150, 'easeInOutCubic');	
		});					   
	});
});
