window.onload = function(){
	//if browser doesnt support getElementById, bounce out.
	if(!document.getElementById)return false;
	//get #project-image
	var projImage = document.getElementById("project-image");
	//if page doesnt have element with id="project-image", bounce out.
	if(!projImage){return;}
	//get the div that holds project-image, named, conveniently, project-image-holder
	var projHolder = document.getElementById("project-image-holder");
	//set var imgWidth to the width of the project-image
	var imgWidth = projImage.width;
	// set the projHolder div widht = to the image width, and assign that width to the style of the div project-image-holder.
	projHolder.style.width = imgWidth+"px";
}
