// Function to activate
function imgOn(img) {
				 if (document.images) {
				 document.images["where"].src = img;
				 }
}

function infoOn(img) {
				 if (document.images) {
				 document.images["info"].src = "../../images/proj_desc_5_hot_tn.jpg";
				 }
}

function infoOff(img) {
				 if (document.images) {
				 document.images["info"].src = "../../images/proj_desc_5_cold_tn.jpg";
				 }
}

function formOn(img) {
				 document.getElementById("where").src="images/submit_button_01-over.jpg"
				 }

function formOff(img) {
				 document.getElementById("where").src="images/submit_button_01.jpg"
				 }

// Function to reload portfolio page and activat correct image
function gotoImg(dest, i) {
				 window.location.replace(dest);
				 imgOn(i);
				 }

