$(document).ready(function() {
	initImgHover();
});

function initImgHover() {
	$("ul.photos div").hide();
	$("ul.photos img").hover(function() {
		$(this).next("div").show();
	}, function() {
		$(this).next("div").hide();
	});
}
