<!--

function button(dateiname_normal, dateiname_hl)

	{

	

		this.hl=new Image()

		this.normal=new Image()

		this.hl.src=dateiname_hl

		this.normal.src=dateiname_normal

	}

	

var bilder=new Array()



function initialisierung()

	{

		// hauptmenu

		bilder["unternehmen"]=new button("images/navi_01_normal.gif", "images/navi_01_hl.gif")

		bilder["dienstleistungen"]=new button("images/navi_02_normal.gif", "images/navi_02_hl.gif")

		bilder["kapazitaeten"]=new button("images/navi_03_normal.gif", "images/navi_03_hl.gif")

		bilder["kontakt"]=new button("images/navi_04_normal.gif", "images/navi_04_hl.gif")

		bilder["impressum"]=new button("images/navi_05_normal.gif", "images/navi_05_hl.gif")

	}

	
initialisierung()


function hlbild(name)
	{
		document.images[name].src=bilder[name].hl.src
	}

function normalbild(name)
	{
		document.images[name].src=bilder[name].normal.src
	}
	
function popup()
	{
		window.open('impressum.html','popup','width=400,height=500,scrollbars=1');
	}
function popit()
	{
		window.open('anfahrt.html','popup','width=640,height=530,scrollbars=0');
	}
function schliessen()
	{
		window.close()
	}
//-->
