// JavaScript Document

var aRaumHeader = new Array("Standard Room",
							"Junior Suite",
							"Artist's Suite",
							"Suite",
							"Luxury Suite",
							"Double Suite"
);

var aRaumTexte = new Array(	"with a bathroom and your own terrace going out to the olive grove mountain",
							"which is one very spacious room with a double bed, a sitting area and an open fire, bathroom and a big terrace overlooking the gardens and the pool. This suite, together with the standard room no. 6 is a perfect combination for families.",
							"with a bedroom with a twin-bed, a living room with an open fire, a	bathroom and itīs own entrance at the side of the hotel with itīs terrace facing the olive grove.",
							"consisting of a sitting room with open fire, a bedroom, your own garden or terrace and a bathroom. The view goes over the pond and gardens past the olive groves towards Ronda and itīs Serranía.",
							"including a large living room with an open fire, a bed- room and a very spacious bathroom, its own terrace with the view out to the valley.",
							"for four grown-up people with two twin-bedrooms, of which one is reached from the living-room via a spiral staircase to the tower. It has one bathroom attached to thesitting room with an open fire, as well as two terraces with spectacular views over La Sierra de lasNieves. Because of the spiral staircase, this suite is not very suitable for the very young or for the elderly"
);

function Menuewechsel (RoomNr) {
	window.document.getElementById("Textblock_Header").firstChild.nodeValue = 	aRaumHeader[RoomNr - 1];
	window.document.getElementById("Textblock_Variabel").firstChild.nodeValue = aRaumTexte[RoomNr - 1];		
}