$(function(){ 
	//work页面的鼠标移上去的提示效果
	$(".lighten-icon>li").hover(function(){
		$(this).children(".pop-tips").show();																		 
	}, function(){
		$(this).children(".pop-tips").hide();
	});	
	//博客详情页评论隔行换色
	$("#blog-comment>dd>ul>li:odd").css("backgroundColor","#eeeeee");
	//表单元素得到焦点时删除提示文字
	$(".input,input[name=search],textarea[name=comment]").xhTip();
	//
	$("#nav li a").hover(function(){
		$(this).children("span").show();
	},function(){
		$(this).children("span").hide();
	});
	//
	$("#work-nav>a,#about-nav>a,#blog-nav>a").hover(function(){
		$(this).find("b").addClass("now");
		},function(){
			$(this).find("b").removeClass("now");
			});
});
