<!--
var current = 0;

function initArray() {
this.length = initArray.arguments.length;
  for (var i = 0; i < this.length; i++) {
  this[i] = initArray.arguments[i];
  }
}

var picz = new initArray(
"../fotoseite/images/chile01.jpg",
"../fotoseite/images/chile02.jpg",
"../fotoseite/images/chile03.jpg",
"../fotoseite/images/chile04.jpg",
"../fotoseite/images/chile05.jpg",
"../fotoseite/images/chile06.jpg",
"../fotoseite/images/chile07.jpg",
"../fotoseite/images/chile08.jpg",
"../fotoseite/images/chile09.jpg",
"../fotoseite/images/chile10.jpg"
);


function checkIt(val) {
	var goodnum = current+val;

if (goodnum < 0) goodnum =picz.length-1;
else if (goodnum >picz.length-1) goodnum=0;
current = goodnum;
document.jscriptimg.src = picz[goodnum];
}


//-->
