$(document).ready(function() {
	$(".info").hide();
	$("a.ref").mouseover(function () {
		//$(this).children("img").hide();
		$(this).children("span").show();
	});
	$("a.ref").mouseout(function () {
		$(this).children("span").hide();
		//$(this).children("img").show();
	});
});

