// JavaScript Document
<!--
//the main function, call to the effect object
	function init(){
	
	
		var stretchers = document.getElementsByClassName('stretcher'); //div that stretches
		var toggles = document.getElementsByClassName('display'); //h3s where I click on

		//accordion effect
		var myAccordion = new fx.Accordion(
			toggles, stretchers, {opacity: true, duration: 800}
		);

		//hash function
		
		function checkHash(){
			var found = false;
			toggles.each(function(h3, i){
				if (window.location.href.indexOf(h3.title) > 0) {
					myAccordion.showThisHideOpen(stretchers[i]);
					found = true;
				}
			});
			return found;
		}
		
		if (!checkHash()) myAccordion.showThisHideOpen(stretchers[0]);
	}
		<!--
function MasterFormValidate(theForm)
{

  if (theForm.Name.value == "")
  {
    alert("Arn't you going to tell me your name?");
    theForm.Name.focus();
    return (false);
  }
  if (theForm.email.value == "")
  {
    alert("Please enter your email address.");
    theForm.email.focus();
    return (false);
  }
  if (theForm.comment.value.length < 2)
  {
    alert("You forgot to leave a comment!!!");
    theForm.comment.focus();
    return (false);
  }

    
  return (true);
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->