if (document.images)
{

	home = new Image();
	home.src = "images/button_home_off.jpg";
	home_MO = new Image();
	home_MO.src = "images/button_home_on.jpg";

	fuel = new Image();
	fuel.src = "images/button_fuel_off.jpg";
	fuel_MO = new Image();
	fuel_MO.src = "images/button_fuel_on.jpg";

	service = new Image();
	service.src = "images/button_service_off.jpg";
	service_MO = new Image();
	service_MO.src = "images/button_service_on.jpg";

	heating = new Image();
	heating.src = "images/button_heating_off.jpg";
	heating_MO = new Image();
	heating_MO.src = "images/button_heating_on.jpg";

	contact = new Image();
	contact.src = "images/button_contact_off.jpg";
	contact_MO = new Image();
	contact_MO.src = "images/button_contact_on.jpg";

}


function m_on(imagename)
{
	if (document.images)
	{
		document [imagename].src = eval(imagename + "_MO.src");
	}
}

function m_out(imagename)
{
	if (document.images)
	{
		document [imagename].src = eval(imagename + ".src");
	}
}