$(function() {
	$(".hoverable").hover(function() {
		$("#hover-info").text($(this).find("img").attr("alt"));
	},
	function() {
		$("#hover-info").text("");
	});
});

