	function photo_toggle_display(image, initial){
		var div_header = document.getElementById('header');

		if(initial=='1'){			
			div_header.innerHTML = '<div id="text_box"> <p style="float: right;  padding-top: 70px;width: 85%; line-height: 15px;">Beach City Design offers photography services in the areas of fine art, portraiture and product.<br/></p> </div> <div id="image_box"> <img src="assets/img/'+image+'" alt="" /> </div>';
		}
		else{
			div_header.innerHTML = '<div style="text-align: center; padding-top: 30px;"> <img src="assets/img/'+image+'" alt="" /> </div>';
		}	
		//document.getElementById('image').src = "assets/img/photo/"+image;
	}

