Normal1 = new Image(); 
Normal1.src = path+"home.gif";
Highlight1 = new Image(); 
Highlight1.src =  path+"/home_b.gif";

Normal2 = new Image(); 
Normal2.src = path+"projektliste.gif";
Highlight2 = new Image(); 
Highlight2.src = path+"projektliste_b.gif";

Normal3 = new Image(); 
Normal3.src = path+"bueroprofil.gif";
Highlight3 = new Image(); 
Highlight3.src = path+"bueroprofil_b.gif";

Normal4 = new Image(); 
Normal4.src = path+"kontakt.gif";
Highlight4 = new Image(); 
Highlight4.src = path+"kontakt_b.gif";

Normal5 = new Image(); 
Normal5.src = path+ "impressum.gif";
Highlight5 = new Image(); 
Highlight5.src = path+ "impressum_b.gif";

//window.onResize=location.reload

function Bildwechsel(Bildnr,Bildobjekt)
{
 window.document.images[Bildnr].src = Bildobjekt.src;
}

function bildWechseln(bildName,dateiName) 
	{
		document.images[bildName].src = dateiName;
	}
	
var obj_old = "";
function showDescription( obj )
{
	document.getElementById( "description_0" ).style.display = "none";
	if( obj_old != "" )
		document.getElementById( "description_" + obj_old.id ).style.display = "none";
	document.getElementById( "description_" + obj.id ).style.display = "block";
	obj_old = obj;
}
function hideDescription( obj )
{
	if ( obj )
		document.getElementById( "description_" + obj.id ).style.display = "none";
	else if( obj_old != "" )
		document.getElementById( "description_" + obj_old.id ).style.display = "none";
	document.getElementById( "description_0" ).style.display = "block";
}