var current = 0;
var bilder = new Array();
bilder.push('fashion/n01.jpg');
bilder.push('fashion/n02.jpg');
bilder.push('fashion/n03.jpg');

bilder.push('fashion/n04.jpg');
bilder.push('fashion/n05.jpg');

bilder.push('fashion/0175.jpg');

bilder.push('fashion/5227.jpg');
bilder.push('fashion/5226.jpg');
bilder.push('fashion/5148.jpg');

bilder.push('fashion/wlf01.jpg');
bilder.push('fashion/wlf02.jpg');
bilder.push('fashion/wlf03.jpg');
bilder.push('fashion/wlf04.jpg');

bilder.push('fashion/i0209.jpg');
bilder.push('fashion/i0309.jpg');

bilder.push('fashion/f511.jpg');
bilder.push('fashion/f512.jpg');

bilder.push('fashion/bag00.jpg');
bilder.push('fashion/bag01.jpg');
bilder.push('fashion/bag02.jpg');

bilder.push('fashion/10.jpg');
bilder.push('fashion/06.jpg');

bilder.push('fashion/ju01.jpg');

bilder.push('fashion/bri01.jpg');
bilder.push('fashion/bri02.jpg');
bilder.push('fashion/bri03.jpg');

bilder.push('fashion/f19.jpg');
bilder.push('fashion/c04.jpg');
bilder.push('fashion/16.jpg');
bilder.push('fashion/01.jpg');
bilder.push('fashion/03.jpg');
bilder.push('fashion/05.jpg');
bilder.push('fashion/15.jpg');
bilder.push('fashion/11.jpg');

var infos = new Array();
infos.push('');
infos.push('');
infos.push('');
infos.push('');
infos.push('');
infos.push('');
infos.push('');
infos.push('');
infos.push('');
infos.push('');
infos.push('');
infos.push('');
infos.push('');
infos.push('');
infos.push('');
infos.push('');
infos.push('');
infos.push('');
infos.push('');
infos.push('');
infos.push('');
infos.push('');
infos.push('');
infos.push('');
infos.push('');
infos.push('');
infos.push('');
infos.push('');
infos.push('');
infos.push('');
infos.push('');
infos.push('');
infos.push('');
infos.push('');
infos.push('');
infos.push('');



function next()
{
var obj = document.getElementById('lagepic');
current = (current + 1) % bilder.length;
obj.src = bilder[current];
obj.setAttribute('title', infos[current]);
document.getElementById('counter').innerHTML = (current+1) + '/' + bilder.length;
}
function prev()
{
var obj = document.getElementById('lagepic');
if (current == 0) current = bilder.length;
current = current - 1;
obj.src = bilder[current];
obj.setAttribute('title', infos[current]);
document.getElementById('counter').innerHTML = (current+1) + '/' + bilder.length;
}
