Functions.addEvent(window, "load", function(){
	var divs = document.getElementsByTagName("div");
	var theImage;
	for (var i = 0; i < divs.length; i++) {
		if (Functions.hasClass(divs[i], "photo")) {
			theImage = divs[i].getElementsByTagName("img")[0];
			theImage.style.marginTop = Math.round((170 - theImage.height) / 2) + "px";
		}
	}
});

