<!--
// Preload Mouseover button
pic1= new Image(); 
pic1.src = "images/contact/Contact_Button_1-2_on.gif";
pic2= new Image(); 
pic2.src = "images/contact/Contact_Button_2-2_on.gif";

// Array for mouseover and mouseout values
var arrPageChanges = new Array();
arrPageChanges["bttn1"] = new Array();
arrPageChanges["bttn1"]["mastheadText"] = "We’re located in the glorious Pacific Northwest in the beautiful city of Portland, Oregon.  With the beach, mountains, desert, forest, rivers, and urban intrigue all within reach, consider an in-person meeting about your project.  You won’t forget it.";
arrPageChanges["bttn1"]["middleImage"] = "images/contact/Contact_1.gif";
arrPageChanges["bttn1"]["bttn1"] = "images/contact/Contact_Button_1-2_on.gif";

arrPageChanges["bttn2"] = new Array();
arrPageChanges["bttn2"]["mastheadText"] = "";
arrPageChanges["bttn2"]["middleImage"] = "images/contact/Contact_2.gif";
arrPageChanges["bttn2"]["bttn2"] = "images/contact/Contact_Button_2-2_on.gif";

// Portion of the array that holds off values
arrPageChanges["bttnOff"] = new Array();
arrPageChanges["bttnOff"]["mastheadText"] = "In the digital age, you’re never farther away than email, phone, FedEx, or fax. Most of our clients are from outside Portland, so you can feel comfortable dealing with us from any point on the globe.";
arrPageChanges["bttnOff"]["middleImage"] = "images/contact/Contact_Default.gif";
arrPageChanges["bttnOff"]["bttn1"] = "images/contact/Contact_Button_1-2_off.gif";
arrPageChanges["bttnOff"]["bttn2"] = "images/contact/Contact_Button_2-2_off.gif";

// Functiion to turn on and off emails on defalut image
function chngEmail(bolEmail)
{
	var strElement = document.getElementById("contactMail");
	
	if(bolEmail == true)
	{
		strElement.style.visibility = "hidden";
	}
	else
	{
		strElement.style.visibility = "visible";
	}	
	return false;
}
//-->
