// JavaScript Document

function toggleAlignment() {
	document.getElementById("searchTextField").className="alignLeft";
	document.getElementById("searchTextField").value=" ";
	}
var howDoIDisplay = "hidden";	

function toggleDisplay() {
 	if (howDoIDisplay=="hidden") {
 		document.getElementById("howDoIContent").style.display="block";
		howDoIDisplay="visible";
	} else  {
 		document.getElementById("howDoIContent").style.display="none";
		howDoIDisplay="hidden";
	}
}
