

//window.open('register.htm','register','scrollbars=0,height=100,width=468');
//pre-cache the mouse-overs unlike the rest of the idiots out there
if (document.images){
services = new Image(123,46)
services.src = "images/services_on.gif"
references_on = new Image(123,46)
references_on.src = "images/references_on.gif"
contact_on = new Image(123,46)
contact_on.src = "images/contact_on.gif"
home_on = new Image(123,46)
home_on.src = "images/home_on.gif"
}

//the mouseover functions
var KeepVar; 

function ChangePicture(Name)
               {if (document.images){
		KeepVar = Name;
                SwitchImg = "images/" + Name + "_on.gif"; 
                document.images[Name].src=SwitchImg;
}
} 


function Fix()
     			{if (document.images){
	  			SwitchImg = "images/" + KeepVar + "_off.gif";
          		document.images[KeepVar].src=SwitchImg;

}
}
