function onmouseIn(id,imagetoreplace)
{
 if (document.images) 
	{
		
			document.getElementById(id).src = imagetoreplace;

	}
	
}

function onmouseOut(id,imagetoreplace)
{
	 if (document.images) 
	{
		
			document.getElementById(id).src = imagetoreplace;


	}

}


function Preload() {
	

	var args = new Array('images/navbutton/active-complete-it.gif','images/navbutton/active-network.gif', 
						 'images/navbutton/active-server.gif', 'images/navbutton/active-call-out.gif',
						 'images/navbutton/active-health.gif', 'images/navbutton/active-partners.gif',
						 'images/navbutton/active-company.gif', 'images/navbutton/active-word.gif');
	
	document.imageArray = new Array(args.length);

	for(var i=0; i<args.length; i++) {
		document.imageArray[i] = new Image;
		document.imageArray[i].src = args[i];
	}

}