	Normal1 = new Image();
	Highlight1 = new Image();
	Normal2 = new Image();
	Highlight2 = new Image();
	Normal3 = new Image();
	Highlight3 = new Image();
	Normal4 = new Image();
	Highlight4 = new Image();
	Normal5 = new Image();
	Highlight5 = new Image();
	Normal6 = new Image();
	Highlight6 = new Image();
	Normal7 = new Image();
	Highlight7 = new Image();
		
	Normal1.src = "images/buttons/homepage.png";     /* erste Standard-Grafik */
	Highlight1.src = "images/buttons/homepage-high.png"; /* erste Highlight-Grafik */

	Normal2.src = "images/buttons/facility.png";     /* erste Standard-Grafik */
	Highlight2.src = "images/buttons/facility-high.png"; /* erste Highlight-Grafik */

	Normal3.src = "images/buttons/prices.png";     /* erste Standard-Grafik */
	Highlight3.src = "images/buttons/prices-high.png"; /* erste Highlight-Grafik */

	Normal4.src = "images/buttons/journey.png";     /* erste Standard-Grafik */
	Highlight4.src = "images/buttons/journey-high.png"; /* erste Highlight-Grafik */
	
	Normal5.src = "images/buttons/fotos.png";     /* erste Standard-Grafik */
	Highlight5.src = "images/buttons/fotos-high.png"; /* erste Highlight-Grafik */
	
	Normal6.src = "images/buttons/aboutus.png";     /* erste Standard-Grafik */
	Highlight6.src = "images/buttons/aboutus-high.png"; /* erste Highlight-Grafik */
	
	Normal7.src = "images/buttons/surrounding.png";     /* erste Standard-Grafik */
	Highlight7.src = "images/buttons/surrounding-high.png"; /* erste Highlight-Grafik */
	

	function ChangePic(TargetObj, SourceObj) {
		window.document[TargetObj].src = SourceObj.src;
	}

	function OpenWindow(PicSRC, Height) {
		if (!Height) {
			Height = 506;
		}
		ThumbView = window.open("../shared/thumbnail.html", "Test", "width=666,height="+Height+",left=100,top=30"); 		
		ThumbView.name = PicSRC;
		ThumbView.focus;
	}
