$(window).load(function () {
	$("#photos .entries .entry").each(function(){
		var imgCenter = ($(this).height() - $(this).find('img').height()) / 2;
		
		$(this).find(".image").hover(function(){
			$(this).find(".info").css({
				display: "block",
				top: -$(this).find(".info").height() + imgCenter - 15
			});
			
		}, function() {
			$(this).find(".info").css("display", "none");
		});
	});
	
	// Fixes if hovered over the info div
	/*$("#photos .entries .entry .image .info").mouseover(function () {
			$(this).css("display", "none");													  
	  });
	
	var imgWidth = $("#photos .photo .image img").width()+2;
	$("#photos .photo .image").css({
		width: imgWidth
	});*/
});
