<!--
// JavaScript Document Page Visite
var a_noms = new Array('Your hiring of holidays side garden','The terrace with Monts de Vaucluse view','The terrace with roof','The living room','Sitting room corner','Kitchen with direct access on the covered terrace','The bathroom','Mezzanine view','Bedroom 1 side entered','Bedroom 2 side garden');
var a_equip = new Array("Equipement: 2 tables, 6 chairs, 2 deckchairs, 1 barbecue.","Equipement: 1 table, 4 chairs, 1 barbecue.","Equipement: 1 table, 4 chairs, 2 deckchairs.","Equipement: 1 table with extension, 6 chairs, 1 settee, 1 dresser.","Equipement: 1 fireplace, 1 seat, 1 coffee table, shelves, 1 television.","Equipement: 1 dresser, 1 extending table, 4 chairs, gas hob, gas convection oven, micro wave, refrigerator with freezer compartment, linen washing, dishwasher, cafe-owner, toaster...,","Equipement: 1 bath-tub, 1 shower, 1 washbasin, 1 piece of furniture for the arrangement, 1 large mirroir with lighting.","The mezzanine gives much gaity to the house where it makes good being on holidays.<br />Equipement: 1 single bed, 1 table basse, shelves, 1 chair, 1 bedside lamp, 1 traversin, 1 pillow, covers.","Equipement: 1 double bed, 2 bedsides, 1 cupboard closet, 2 chairs, 1 thwart, 2 pillows, covers.","Equipement: 2 single bed, 2 bedsides, 1 chest of drawers, shelves, 1 chair, 1 bedside lamp, 2 thwarts, 2 pillows, covers.");
var i;
var	j;
var n_photo = 10;
var a_photo = new Array();
var a_plan = new Array();
var timer;
// Chargement dans a_photo et a_plan des images sans celles d'indice 0 soit 9 photos et 9 plans
for (var i=0;i<=n_photo-1;i++) {
	a_photo[i] = new Image();
	a_photo[i].src = "../photos/location/photo_"+i+".jpg";
}
for (var i=1;i<=n_photo-1;i++) {	
	a_plan[i] = new Image();
	a_plan[i].src = "plans_uk/plan_"+i+".gif";
}
var ordre_departTempo;
// Pour afficher la photo et le plan correspondant au survol
function setPause(on,j,i) {
if (on) {
	clearTimeout(timer);
	ordre_departTempo = 0;
	document.images["photo"].src = a_photo[i].src;
	document.getElementById("Text").innerHTML = (a_noms[i]);
	document.getElementById("Equip").innerHTML = (a_equip[i]);
	if (j==0) {
		document.images["plan_"+j].src = a_plan[i].src;
		document.images["plan_1"].src = "plans_uk/plan_1_0.gif";
		};
	if (j==1) {
		document.images["plan_"+j].src = a_plan[i].src;
		document.images["plan_0"].src = "plans_uk/plan_0_0.gif";
		};
	}
}

function ini_visit() {
	document.images["photo"].src = a_photo[0].src;
	document.images["plan_0"].src = "plans_uk/plan_0_0.gif";
	document.images["plan_1"].src = "plans_uk/plan_1_0.gif";
	document.getElementById("Text").innerHTML = (a_noms[0]);
	document.getElementById("Equip").innerHTML = (a_equip[0]);
}

function horsPlan() {
	timer=setTimeout(ini_visit,5000);
}
-->
