var pic = new Array();
var text = new Array();
var rootdir="diashow/";
pic[1] = new Image(); pic[1].src = rootdir + "0001_001-spitzperle-hell.jpg";
text[1] = "Spitzperlen-Rosenkranz";
pic[2] = new Image(); pic[2].src = rootdir + "0002_140.jpg";
text[2] = "Knüpfschnur";
pic[3] = new Image(); pic[3].src = rootdir + "0003_0910-kreuz-gross-tonengel-m.jpg";
text[3] = "Kinderkreuz";
pic[4] = new Image(); pic[4].src = rootdir + "0004_404101.jpg";
text[4] = "Weihwasserkessel";
pic[5] = new Image(); pic[5].src = rootdir + "0005_506253G.jpg";
text[5] = "Holzfigur <i>Nachtwächter</i>";
pic[6] = new Image(); pic[6].src = rootdir + "0006_1212588705-609.jpg";
text[6] = "Holzperlen";
pic[7] = new Image(); pic[7].src = rootdir + "0007_1283168335-532.jpg";
text[7] = "Kinderkreuz klein";
pic[8] = new Image(); pic[8].src = rootdir + "0008_ben-spitz-hell.jpg";
text[8] = "Rosenkranz <i>Papst Benedikt</i>";
pic[9] = new Image(); pic[9].src = rootdir + "0009_DSC00738web.jpg";
text[9] = "Kinderkreuz";
pic[10] = new Image(); pic[10].src = rootdir + "0010_E051.jpg";
text[10] = "Betende Engel";
pic[11] = new Image(); pic[11].src = rootdir + "0011_Edelkatze.jpg";
text[11] = "Holzfigur Edelkatze";
pic[12] = new Image(); pic[12].src = rootdir + "0012_H009-8.jpg";
text[12] = "Prager Jesuskind";
pic[13] = new Image(); pic[13].src = rootdir + "0013_H068.jpg";
text[13] = "Weihwasserkessel <i>Engel</i>";
pic[14] = new Image(); pic[14].src = rootdir + "0014_H083-17.jpg";
text[14] = "Wandkreuz";
pic[15] = new Image(); pic[15].src = rootdir + "0015_Holzhackerstube.jpg";
text[15] = "Holzrelief Bauernstube";
pic[16] = new Image(); pic[16].src = rootdir + "0016_IMG_1425 (2).jpg";
text[16] = "Holzkreuzchen aus eigener Fertigung";
pic[17] = new Image(); pic[17].src = rootdir + "0017_kikreu-engel-blau.jpg";
text[17] = "Kinderkreuz mit Keramikengel";
pic[18] = new Image(); pic[18].src = rootdir + "0018_M012-12.jpg";
text[18] = "Madonnenfigur";
pic[19] = new Image(); pic[19].src = rootdir + "0019_M041-9.jpg";
text[19] = "Schwarze Madonna von Altötting";
pic[20] = new Image(); pic[20].src = rootdir + "0020_Pferd Rappe.jpg";
text[20] = "Holzfigur Rappe";
pic[21] = new Image(); pic[21].src = rootdir + "0021_rk-002.jpg";
text[21] = "Rosenkranz aus unserer Fertigung";
pic[22] = new Image(); pic[22].src = rootdir + "0022_rk-016.jpg";
text[22] = "Rosenkranz mit Kreuz<br>aus eigener Fertigung";
pic[23] = new Image(); pic[23].src = rootdir + "0023_rk-033.jpg";
text[23] = "Rosenkranz";
pic[24] = new Image(); pic[24].src = rootdir + "0024_00kreuz2rosen01.jpg";
text[24] = "Rosenkreuz aus Polyresin";
var i = 1;
function LoadPicData() {
document.getElementById("ds").src = rootdir + pic[i].src;
document.getElementById("text").innerHTML = "<font face='Arial,Helvetica,Swiss,sans-serif' color='#F2CD21'> "
                                            + text[i] +"</font>";
}
function NextPic() {
i = i + 1;
if(i > pic.length -1) i = 1;
LoadPicData();
}
function PreviousPic() {
i = i - 1;
if(i < 1) i = pic.length -1;
LoadPicData();
}
function NextPicManual() {
window.clearInterval(aktiv);
NextPic();
aktiv = window.setInterval("NextPic()",6000);
}
function PreviousPicManual() {
window.clearInterval(aktiv);
PreviousPic();
aktiv = window.setInterval("NextPic()",6000);
}
var aktiv = window.setInterval("NextPic()",6000);
