function resizePhoto() {
	if ($("img#foto")[0] != null) {
		
		$("div#foto_div")[0].style.width = 0 + 'px';
		
		var w = $("div#main")[0].offsetWidth - 22;
		$("div#foto_div")[0].style.width = w + 'px';
		$("img#foto")[0].style.width = w + 'px';
	}
}

$(document).ready(function(){

	resizePhoto();
	
	$(window).resize(function() {
		resizePhoto();
	});
});
