var hotelImages = new Array();
hotelImages[0] = '/files/grafica_img/myhotel_1.gif';
hotelImages[1] = '/files/grafica_img/myhotel_2.gif';
hotelImages[2] = '/files/grafica_img/myhotel_3.gif';
hotelImages[3] = '/files/grafica_img/myhotel_4.gif';
// ...

var hotelCurrentlyActive = 0;
var hotelImg = document.getElementById('hotel_img');

function hotelPrepare()
	{
	for(i in hotelImages)
		{
		var img = new Image();
		img.src = hotelImages[i];

		document.getElementById('hotel_text_' + i).style.display = "none";
		}

	hotelActivate(hotelCurrentlyActive, true);
	}

function hotelActivate(which, force)
	{
	if(!force && hotelCurrentlyActive == which)
		return;

	hotelImg.src = hotelImages[which];
	if(null !== hotelCurrentlyActive)
		{
		document.getElementById('hotel_text_' + hotelCurrentlyActive).style.display = "none";
		document.getElementById('hotel_link_' + hotelCurrentlyActive).style.display = "inline";
		}

	document.getElementById('hotel_text_' + which).style.display = "inline";
	document.getElementById('hotel_link_' + which).style.display = "none";

	hotelCurrentlyActive = which;

	return false;
	}