$(document).ready(function(){
	$('.case a.btnEnlarge').hover(function() {
		$(this).append("<span>Click to Enlarge</span>");
	}, function () {
	    $(this).find("span:last").remove();
	});
});
