/*form = document.getElementById("finditfastForm");
select = document.getElementById("finditfastSelect");
submit = document.getElementById("finditfastSubmit");
submit.style.display = select.style.display = "none";

customSelect = new Array();
customSelect.push("<input id=\"selectTextBox\" class=\"SelectTextBox\" type=\"text\" onclick=\"toggleOptions();\" value=\"Find it Fast...\" />");
customSelect.push("<input class=\"SelectButton\" type=\"button\" onclick=\"toggleOptions();\" value=\"V\" /><br />");
customSelect.push("<div id=\"selectList\" class=\"SelectList\"><a href=\"\" onclick=\"selectOption(this.innerHTML, 1);return false;\">Find it Fast...</a><br />");
customSelect.push("<a href=\"\" onclick=\"selectOption(this.innerHTML, 0);return false;\">Contact Us</a><br />");
customSelect.push("<a href=\"\" onclick=\"selectOption(this.innerHTML, 1);return false;\">News + Media</a><br /></div>");

form.innerHTML += customSelect.join(" ");

selectList = document.getElementById("selectList");
selectList.style.display = "none";
selectTextBox = document.getElementById("selectTextBox");

function toggleOptions() {

    selectList.style.display = selectList.style.display == "block" ? "none" : "block";
}

function selectOption(value, index) {

   selectTextBox.value = value;
   selectList.style.display = "none";
   
}*/

function ToggleContactForm() 
{
	var eleContactForm = document.getElementById("TheContactForm");
	var eleToggleButton = document.getElementById("toggleButton");
		
	if(ContactFormDisplay == false)
	{
	    eleContactForm.style.display = "block";
	    ContactFormDisplay = true;
	    eleToggleButton.style.backgroundPosition = "0px -21px";   
	}
	else
	{
	    eleContactForm.style.display = "none";
	    ContactFormDisplay = false;
	    eleToggleButton.style.backgroundPosition = "0px 5px";
	}
} 

