JQ(document).ready(function(){
	JQ("#work-box ul li dl dt a").append("<span></span>");
	JQ("#work-box ul li dl dt a").hover(function(){
		JQ(this).stop().children("span").show();//JQ(this).stop().children("span").fadeIn(600);
	},function(){
		JQ(this).stop().children("span").hide();//JQ(this).stop().children("span").fadeOut(200);
	});
	JQ("#work-detail-box a").append("<span></span>");
	JQ("#work-detail-box a").hover(function(){
		JQ(this).stop().children("span").show();//JQ(this).stop().children("span").fadeIn(600);
	},function(){
		JQ(this).stop().children("span").hide();//JQ(this).stop().children("span").fadeOut(200);
	});
});
