function _init(){
// Any page wide script should go directly below:
// Page wide code
if( typeof window.init == "function" ) window.init();
// run this after all onLoad functionality has run
if( typeof window.onInit == "function" ) window.onInit();
MM_preloadImages('/static/images/contact-n.gif','/static/images/faq-n.gif','/static/images/home-n.gif','/static/images/mydeldot-n.gif','/static/images/faq-h.gif','/static/images/contact-h.gif','/static/images/home-h.gif','/static/images/mydeldot-h.gif');
}
function _cleanup(){
// Any page wide script should go directly below:
// Page wide code
if( typeof window.cleanup == "function" ) window.cleanup();
// run this after all onunload functionality has run
if( typeof window.onCleanup == "function" ) window.onCleanup();
}
function changeClass(element, from, to) {
element.className = element.className.replace(from, to);
return false;
}
function changeBodyClass(from, to) {
changeClass(document.body, from, to);
return false;
}
