// JavaScript Document
<!--
//window.onload=montre;
function montre(id) {
var ifile='smenu'+id;

var d = document.getElementById(ifile);
    for (var i = 1; i<=10; i++) {
		if ( id == i) {
			if (d) {d.style.display='block';}
		} else {
		    if (document.getElementById('smenu'+i)) {document.getElementById('smenu'+i).style.display='none';}
		}
	}
	
}

function cache() {
    for (var i = 1; i<=10; i++) {
		if (document.getElementById('smenu'+i)) {document.getElementById('smenu'+i).style.display='none';}
	}
}
//-->

function Ausrichten(was) {
	//window.alert(document.getElementById(was).value);
	//document.getElementById(was).innerHTML=txt;
	document.getElementById(was).style.backgroundColor = "#ffcc66";
}
function MAusrichten(was) {
	//window.alert(document.getElementById(was).value);
	//document.getElementById(was).innerHTML=txt;
	document.getElementById(was).style.backgroundColor = "#ffcc66";
}
function displaySel(was) {
	//msg='displaySel';
	//window.alert(msg);
	//window.alert(document.getElementById(was).value);
	//document.getElementById(was).innerHTML=txt;
	document.getElementById(was).style.backgroundColor = "#F18E00";
	}

function myAlert(msg){
    window.alert(msg);
}

function montreWhat(ifile) {
  if (ifile=='home') 		 	    {cache();}
  else if (ifile=='kontakt') 		{cache();MAusrichten('menu1');}
  else {}	
}