if (document.images)
{
	home_on = new Image();
	home_on.src = "../images/btn_home_on.gif";
	home_off = new Image();
	home_off.src = "../images/btn_home_off.gif";
	
	dove_on = new Image();
	dove_on.src = "../images/btn_dove_on.gif";
	dove_off = new Image();
	dove_off.src = "../images/btn_dove_off.gif";

	descr_on = new Image();
	descr_on.src = "../images/btn_descr_on.gif";
	descr_off = new Image();
	descr_off.src = "../images/btn_descr_off.gif";
	
	camere_on = new Image();
	camere_on.src = "../images/btn_camere_on.gif";
	camere_off = new Image();
	camere_off.src = "../images/btn_camere_off.gif";

	tempo_libero_on = new Image();
	tempo_libero_on.src = "../images/btn_tempo_libero_on.gif";
	tempo_libero_off = new Image();
	tempo_libero_off.src = "../images/btn_tempo_libero_off.gif";

	promozioni_on = new Image();
	promozioni_on.src = "../images/btn_promozioni_on.gif";
	promozioni_off = new Image();
	promozioni_off.src = "../images/btn_promozioni_off.gif";
	
	gallery_on = new Image();
	gallery_on.src = "../images/btn_gallery_on.gif";
	gallery_off = new Image();
	gallery_off.src = "../images/btn_gallery_off.gif";
	

	contatti_on = new Image();
	contatti_on.src = "../images/btn_contatti_on.gif";
	contatti_off = new Image();
	contatti_off.src = "../images/btn_contatti_off.gif";
}

function imgOn(imgName){
	document.images[imgName].src=eval(imgName + "_on.src")
}

function imgOff(imgName){
	document.images[imgName].src=eval(imgName + "_off.src")
}

