if(document.images){
	home_on = new Image;
	home_on.src = imgPath + "home.jpg";
	rental_center_on = new Image;
	rental_center_on.src = imgPath + "rental_center.jpg";
	vehicles_on = new Image;
	vehicles_on.src = imgPath + "vehicles.jpg";
	locations_on = new Image;
	locations_on.src = imgPath + "locations.jpg";
	specials_on = new Image;
	specials_on.src = imgPath + "specials.jpg";
	policies_on = new Image;
	policies_on.src = imgPath + "policies.jpg";
	affiliates_on = new Image;
	affiliates_on.src = imgPath + "affiliates.jpg";
	
	
	home_off = new Image;
	home_off.src = imgPath + "over/home.jpg";
	rental_center_off = new Image;
	rental_center_off.src = imgPath + "over/rental_center.jpg";
	vehicles_off = new Image;
	vehicles_off.src = imgPath + "over/vehicles.jpg";
	locations_off = new Image;
	locations_off.src = imgPath + "over/locations.jpg";
	specials_off = new Image;
	specials_off.src = imgPath + "over/specials.jpg";
	policies_off = new Image;
	policies_off.src = imgPath + "over/policies.jpg";
	affiliates_off = new Image;
	affiliates_off.src = imgPath + "over/affiliates.jpg";
}

function rollAll(i,s,t){
	document.images[i].src=eval(i+s+".src");
	window.status=t;
} 