if (document.images) {
	mapoff = new Image();
	mapoff.src = "http://www.paris-france-vacation-hotels.com/images/map1.gif";
	hotelsoff = new Image();
	hotelsoff.src = "http://www.paris-france-vacation-hotels.com/images/hotels1.gif";
	packagesoff = new Image();
	packagesoff.src = "http://www.paris-france-vacation-hotels.com/images/packages1.gif";
	toursoff = new Image();
	toursoff.src = "http://www.paris-france-vacation-hotels.com/images/tours1.gif";
	resvoff = new Image();
	resvoff.src = "http://www.paris-france-vacation-hotels.com/images/resv1.gif";
	contactoff = new Image();
	contactoff.src = "http://www.paris-france-vacation-hotels.com/images/contact1.gif";
	homeoff = new Image();
	homeoff.src = "http://www.paris-france-vacation-hotels.com/images/home1.gif";
	provincesoff = new Image();
	provincesoff.src = "http://www.paris-france-vacation-hotels.com/images/provinces1.gif";

    mapon = new Image();
	mapon.src = "http://www.paris-france-vacation-hotels.com/images/map2.gif";
    hotelson = new Image();
	hotelson.src = "http://www.paris-france-vacation-hotels.com/images/hotels2.gif";
    packageson = new Image();
	packageson.src = "http://www.paris-france-vacation-hotels.com/images/packages2.gif";
    tourson = new Image();
	tourson.src = "http://www.paris-france-vacation-hotels.com/images/tours2.gif";
    resvon = new Image();
	resvon.src = "./images/resv2.gif";
    contacton = new Image();
	contacton.src = "http://www.paris-france-vacation-hotels.com/images/contact2.gif";
	homeon = new Image();
	homeon.src = "http://www.paris-france-vacation-hotels.com/images/home2.gif";
    provinceson = new Image();
	provinceson.src = "http://www.paris-france-vacation-hotels.com/images/provinces2.gif";
                                                
}

// Function to 'activate' images.

function imgOn(imgName) {
	if (document.images) {
		document[imgName].src = eval(imgName + "on.src");
	}
}

// Function to 'deactivate' images.

function imgOff(imgName) {
	if (document.images) {
		document[imgName].src = eval(imgName + "off.src");
	}
}