//copyright: update Zuerich
var base = "http://www.tolhusen.ch/pict/button/";
var suffixon = "_on";
var suffixoff = "_off";
var endg = ".gif";

if (document.images) {
	bild1on = new Image();   bild1on.src = base + "kontakt" + suffixon + endg; 
	bild1off = new Image();   bild1off.src = base + "kontakt" + suffixoff + endg;
	bild2on = new Image();   bild2on.src = base + "standort" + suffixon + endg; 
	bild2off = new Image();   bild2off.src = base + "standort" + suffixoff + endg;
	bild3on = new Image();   bild3on.src = base + "profil" + suffixon + endg; 
	bild3off = new Image();   bild3off.src = base + "profil" + suffixoff + endg;
	bild4on = new Image();   bild4on.src = base + "kompetenzen" + suffixon + endg; 
	bild4off = new Image();   bild4off.src = base + "kompetenzen" + suffixoff + endg;
	bild5on = new Image();   bild5on.src = base + "aktuell" + suffixon + endg; 
	bild5off = new Image();   bild5off.src = base + "aktuell" + suffixoff + endg;
	bild6on = new Image();   bild6on.src = base + "home" + suffixon + endg; 
	bild6off = new Image();   bild6off.src = base + "home" + suffixoff + endg;
  bild10on = new Image();   bild10on.src = base + "konzept" + suffixon + endg; 
	bild10off = new Image();   bild10off.src = base + "konzept" + suffixoff + endg;
	bild11on = new Image();   bild11on.src = base + "corporate" + suffixon + endg; 
	bild11off = new Image();   bild11off.src = base + "corporate" + suffixoff + endg;
	bild12on = new Image();   bild12on.src = base + "weiterbildung" + suffixon + endg; 
	bild12off = new Image();   bild12off.src = base + "weiterbildung" + suffixoff + endg;
	bild13on = new Image();   bild13on.src = base + "publizistik" + suffixon + endg; 
	bild13off = new Image();   bild13off.src = base + "publizistik" + suffixoff + endg;
	bild14on = new Image();   bild14on.src = base + "beratung" + suffixon + endg; 
	bild14off = new Image();   bild14off.src = base + "beratung" + suffixoff + endg;
  bild15on = new Image();   bild15on.src = base + "links" + suffixon + endg; 
	bild15off = new Image();   bild15off.src = base + "links" + suffixoff + endg;
   }

        function bildOn(bildName) {
                if (document.images) {
                        document[bildName].src = eval(bildName + "on.src");       
                }
        }

        function bildOff(bildName) {
                if (document.images) {
                        document[bildName].src = eval(bildName + "off.src");
                }
                
        
        }

