// JavaScript Document

sfHover = function() {
	var sfEls = document.getElementById("mtMenu").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			if(this.className.indexOf('Selected') < 0){
				this.className+="Hover";
			}
		}
		sfEls[i].onmouseout=function() {
			if(this.className.indexOf('Hover') >= 0){
				this.className=this.className.replace(new RegExp("Hover\\b"), "");
			}
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);


function doPreload()
{

   var imagesToLoad = new Array('../../images/why_blk.gif','../../images/lead_blk.gif','../../images/clients_blk.gif','../../images/test_blk.gif','../../images/ind_blk.gif','../../images/contact_blk.gif');   
   for(var i = 0; i < imagesToLoad.length; i++)
   {
 	var imageToLoad = new Image();
	imageToLoad.src = imagesToLoad[i];
   }
}

