function sortHeight(){
	var content = $("#content"), footer = $("#footer");
	if(content.length && footer.length){
		var contOffset = content.offset();
		content.height("auto");
		if(contOffset.top + content.height()+footer.height() < info.height)
			content.height(info.height-footer.height()- contOffset.top -1);
	}
}
$(document).ready(function()
{
	$('.birthdays .photo img').css({'width':'auto'});
}
);
