$(document).ready(function(){
	$("#wrapper a").append("<span></span>");
	$("#wrapper a").hover(function(){
		$(this).children("span").fadeIn(300);
	},function(){
		$(this).children("span").fadeOut(150);
	});
});
