/*<SCRIPT LANGUAGE="JavaScript"> 
<script type="text/javascript">*/
var timeDelay = 7;
var Pix = new Array
("_bilder/home/home1.jpg"
,"_bilder/home/home2.jpg"
,"_bilder/home/home3.jpg"
);
var howMany = Pix.length;
timeDelay *= 1000;
var PicCurrentNum = 0;
var PicCurrent = new Image();
PicCurrent.src = Pix[PicCurrentNum];
function startPix() {
setInterval("slideshow()", timeDelay);
}
function slideshow() {
PicCurrentNum++;
if (PicCurrentNum == howMany) {
PicCurrentNum = 0;
}
PicCurrent.src = Pix[PicCurrentNum];
document["ChangingPix"].src = PicCurrent.src;
}
/*</script>*/
