//imageMouseover.js
if (document.images) 
{

	service_off=new Image;service_off.src='images/service-off.gif';
	service_on=new Image;service_on.src='images/service-on.gif';

	about_off=new Image;about_off.src='images/about-off.gif';
	about_on=new Image;about_on.src='images/about-on.gif';

	location_off=new Image;location_off.src='images/location-off.gif';
	location_on=new Image;location_on.src='images/location-on.gif';

	contact_off=new Image;contact_off.src='images/contact-off.gif';
	contact_on=new Image;contact_on.src='images/contact-on.gif';


}
function imageSwap(location,imageName){
if(document.images)
document.images[location].src=eval(imageName+'.src');
}