var Bild = new Array(); 
Bild[0] = new Image(); 
Bild[0].src = "img_roth/GAL_1.jpg"; 
Bild[1] = new Image(); 
Bild[1].src = "img_roth/GAL_2.jpg"; 
Bild[2] = new Image(); 
Bild[2].src = "img_roth/GAL_5.jpg"; 
Bild[3] = new Image(); 
Bild[3].src = "img_roth/GAL_6.jpg"; 
Bild[4] = new Image(); 
Bild[4].src = "img_roth/baustelle05.jpg"; 
Bild[5] = new Image(); 
Bild[5].src = "img_roth/baustelle06.jpg";
Bild[7] = new Image(); 
Bild[7].src = "img_roth/baustelle03.jpg"; 
Bild[6] = new Image(); 
Bild[6].src = "img_roth/baustelle07.jpg";
Bild[8] = new Image(); 
Bild[8].src = "img_roth/baustelle01.jpg"; 
Bild[9] = new Image(); 
Bild[9].src = "img_roth/baustelle02.jpg";
Bild[10] = new Image(); 
Bild[10].src = "img_roth/GAL_3.jpg"; 
Bild[11] = new Image(); 
Bild[11].src = "img_roth/GAL_4.jpg"; 

var texte = new Array();
texte[0] = 'Dies ist das erste Beispielbild';
texte[1] = 'Dies ist das zweite Beispielbild';
texte[2] = 'Dies ist das dritte Beispielbild';
texte[3] = 'Dies ist das vierte Beispielbild';
texte[4] = 'Dies ist das fünfte Beispielbild';
texte[5] = 'Dies ist das sechste Beispielbild';
texte[6] = 'Dies ist das siebte Beispielbild';
texte[7] = 'Dies ist das achte Beispielbild';
texte[8] = 'Dies ist das neunte Beispielbild';
texte[9] = 'Dies ist das zehnte Beispielbild';
texte[10] = 'Dies ist das elfte Beispielbild';
texte[11] = 'Dies ist das zwölfte Beispielbild';

var lnks=new Array();
lnks[11]='http://www.google.de';
var ActNr;
function galerieonclick() {
  var l=lnks[ActNr];
  if(l != undefined) window.open(l ,"_blank");
}
function galerie(nr) {
  var pic=document.getElementById("galeriebild");
  var n=Bild[nr];
  var nt=texte[nr];
  if(n.width>400) {
	pic.width=400;
  } else {
      pic.width=400;
  }
  pic.src=Bild[nr].src;
  ActNr=nr;
}
