// Make calls to other operations from this file. 


// fired at the end of the page once all html has loaded
function onDOMload () {
	if(typeof sIFR == "function"){
		switchFonts();
	};
	if(typeof buildTransitions == "function") {
		buildTransitions();
	};
};

// fired once all content has loaded
function onPageLoad () {
	
};


//Script for changing switching forms
  function toggle_it(itemID)

      {
      switchForms('form2')

  }
		function toggle_it2(itemID)

      {
      switchForms('form1')

  }

function switchForms(itemID) {
	var offID = itemID=='form1' ? 'form2':'form1';
	document.getElementById(itemID).style.display = 'inline';
	document.getElementById(offID).style.display = 'none';
}







document.onload = onPageLoad();






























