$(function() {
	
	resizeBackgroundPhoto();
	$(window).resize(resizeBackgroundPhoto);
		
	function resizeBackgroundPhoto() {
		$("#background-photo").width($(window).width());
	}

});