
function setBoxHieght(){
	$("a.arrow").each(function(){
		var boxHeight = $(this).parent().find(".row").height();
		$(this).height(boxHeight);
		$(this).find("img:first").css({ "position":"relative", "top":((boxHeight/2)-20)+"px", "left":"13px" });
	});
}




$(function() {
	setBoxHieght();
});
