function overIt(theId, theImage){
	document.getElementById(theId).src = theImage;
}

function preLoad( url ) {
	temp = new Image(10, 10);
	temp.src = url;
}

function preloadImages() {
	// preload menu images
	preLoad("i/navAbout_on.jpg");
	preLoad("i/navLawyers_on.jpg");
	preLoad("i/navClients_on.jpg");
	preLoad("i/navWhat_on.jpg");
	preLoad("i/navKnow_on.jpg");
	preLoad("i/navNew_on.jpg");
	preLoad("i/navArt_on.jpg");
	preLoad("i/navContact_on.jpg");
}