<!--        window.onload = function() {            initializeMenu("homeMenu", "homeActuator");            initializeMenu("faqMenu", "faqActuator");            initializeMenu("contactMenu", "contactActuator");            initializeMenu("titlesMenu", "titlesActuator");        }   		//-->   		   		   		<!--/* * menuDropdown.js - implements a dropdown menu based on a HTML list * Author: Dave Lindquist (http://www.gazingus.org)*/var currentMenu = null;if (!document.getElementById)    document.getElementById = function() { return null; }function initializeMenu(menuId, actuatorId) {    var menu = document.getElementById(menuId);    var actuator = document.getElementById(actuatorId);    if (menu == null || actuator == null) return;    actuator.onmouseover = function() {       if (currentMenu) {            currentMenu.style.visibility = "hidden";            this.showMenu();        }    }    actuator.onclick = function() {        if (currentMenu == null) {           this.showMenu();        }        else {           currentMenu.style.visibility = "hidden";            currentMenu = null;       }        return false;    }        actuator.showMenu = function() {        menu.style.left = this.offsetLeft + "px";        menu.style.top = this.offsetTop + this.offsetHeight + "px";       menu.style.visibility = "visible";      currentMenu = menu;    }}//-->//this removes IE outline from links . Use <a href="#" onClick="defocus(this)"><!--function defocus(x) {    if (navigator.appName == 'Microsoft Internet Explorer' || document.all)        x.blur(); }{     document.links.onClick = 'defocus(this)';        }//-->function new_window(url) { 	link = window.open(url,"Link","toolbar=1,location=1,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=400,height=300,left=80,top=180");}//-->