function bild(nr,imagename,imagedescr,date,time) {
  this.nr = nr; 
  this.imagename = imagename;
  this.imagedescr = imagedescr;
  this.date = date;
  this.time = time;
}

bilder = new Array(
new bild('01', 'DSCN1279.jpg', 'WTC DD 11.06.2003', ''),
new bild('02', 'DSCN1280.jpg', 'WTC DD 11.06.2003', ''),
new bild('03', 'DSCN1281.jpg', 'WTC DD 11.06.2003', ''),
new bild('04', 'DSCN1284.jpg', 'WTC DD 11.06.2003', ''),
new bild('05', 'DSCN1286.jpg', 'WTC DD 11.06.2003', ''),
new bild('06', 'DSCN1303.jpg', 'WTC DD 11.06.2003', ''),
new bild('07', 'DSCN1306.jpg', 'WTC DD 11.06.2003', ''),
new bild('08', 'DSCN1309.jpg', 'WTC DD 11.06.2003', ''),
new bild('09', 'DSCN1315.jpg', 'WTC DD 11.06.2003', ''),
new bild('10', 'DSCN1319.jpg', 'WTC DD 11.06.2003', ''),
new bild('11', 'DSCN1326.jpg', 'WTC DD 11.06.2003', ''),
new bild('12', 'DSCN1330.jpg', 'WTC DD 11.06.2003', ''),
new bild('13', 'DSCN1345.jpg', 'WTC DD 11.06.2003', ''),
new bild('14', 'DSCN1348.jpg', 'WTC DD 11.06.2003', ''),
new bild('15', 'DSCN1350.jpg', 'WTC DD 11.06.2003', ''),
new bild('16', 'DSCN1358.jpg', 'WTC DD 11.06.2003', ''),
new bild('17', 'DSCN1369.jpg', 'WTC DD 11.06.2003', '')
);


//030605 altes bilderobjekt umwandeln in neues >> fertig
function umwandeln() {
  t=''
  for (i=1; i<bilder.length; i++) {
    t+= '<br>new bild(';
    t+= '\'';
    t+= bilder[i].nr;
    t+= '\', \'';
    t+= bilder[i].name;
    t+= '\', \'';
    t+= bilder[i].description;
    t+= '\', \'';
    t+= bilder[i].date;
    t+= '\', \'';
    t+= bilder[i].time;
    t+= '\'),';
  }
  document.writeln(t);
}

