function preload(BildArray)
{
	for (i=0; i < BildArray.length; i++) 
	{
		var Bild = new Image();
		Bild.src = BildArray[i];
  	}
}

function changeNavi(mid, type)
{
  	document.getElementById('menu_'+mid).src='./images/'+mid+'_'+type+'.jpg';

	if(type == 'hover')
  		document.getElementById('text_'+mid).className='currentpage';

	if(type == 'normal')
  		document.getElementById('text_'+mid).className='';
	
}

function newWin(url,width,height) {
	fenster = window.open(url, "NewWin", "width="+width+",height="+height+",status=no,scrollbars=yes,resizable=no,hotkeys=no,location=no,menubar=no,toolbar=no");
	fenster.focus();
}

function map24_removeDefaultValues() {
	if (document.link2map24.s.value == 'Adresse') 	document.link2map24.s.value 	= '';
}
