<!--
onerror = stopError; 
function stopError()
{
return true;
} 
function button(pic_off, pic_on){
	this.aktiv = new Image();
	this.normal = new Image();
	this.aktiv.src = pic_on;
	this.normal.src = pic_off;
}
var bild = new Array();
			
function init(){
	bild["b1"] = new button("../site/img/musik_off.gif","../site/img/musik_on.gif");
	bild["b2"] = new button("../site/img/entertaiment_off.gif","../site/img/entertaiment_on.gif");
	bild["b3"] = new button("../site/img/projektmanagment_off.gif","../site/img/projektmanagment_on.gif");
	bild["b4"] = new button("../site/img/kuenstlerdatenbank_off.gif","../site/img/kuenstlerdatenbank_on.gif");
	bild["b5"] = new button("../site/img/presse_off.gif","../site/img/presse_on.gif");
	bild["b6"] = new button("../site/img/impressum_off.gif","../site/img/impressum_on.gif");
	bild["b7"] = new button("../site/img/kontakt_off.gif","../site/img/kontakt_on.gif");
}

 
function act(name){
	if(!bild[name].aktiv.src){
		return true;
	} else {
		document.images[name].src = bild[name].aktiv.src;
	}
}
function noact(name){
	if(!bild[name].normal.src){
		return true;
	} else {
		document.images[name].src = bild[name].normal.src;
	}
}

//-->
