// JavaScript Document

get_host_logo = function(){
	document.write(unescape("%3Ca%20href%3D%22http%3A//e-connection.com.au%22%20target%3D%22_blank%22%3E%3Cfont%20size%3D%221px%22%20face%3D%22Arial%22%20color%3D%22%23000000%22%3EHosting%20by%20%3C/font%3E%3Cfont%20size%3D%222px%22%20face%3D%22Arial%22%20color%3D%22%23c92727%22%3E%3Cstrong%3Ee%3C/strong%3E%3C/font%3E%3Cfont%20size%3D%223px%22%20face%3D%22Arial%22%20color%3D%22%23c92727%22%3E%29%3C/font%3E%20%3Cfont%20size%3D%222px%22%20face%3D%22Georgia%22%20color%3D%22%23474545%22%3E%3Ci%3EConnect%3C/i%3E%3C/font%3E%3Cfont%20size%3D%222px%22%20face%3D%22Georgia%22%20color%3D%22%23000000%22%3Eion%3C/font%3E%3C/a%3E"));
}
startList = function() {
// Required update: if the page has no primary nav, don't do anything, don't give an error.
  if (document.all&&document.getElementById) {
    navRoot = document.getElementById("menunav");
    if (navRoot) {
      for (i=0; i<navRoot.childNodes.length; i++) {
        node = navRoot.childNodes[i];
        if (node.nodeName=="LI") {
          node.onmouseover=function() {
            this.className+=" over";
          }
          node.onmouseout=function() {
            this.className=this.className.replace(" over", "");
          }
} } } } }



execOnLoad = function() {
 startList();

}


window.onload=execOnLoad;