function myImages() {
	this.images = ["mapa_subpage.png","foto10.png","foto1.png","foto2.png","foto3.png","foto4.png","foto5.png","foto6.png","foto7.png","foto8.png","foto9__.png"];
	this.basePath = '/images/maps/';
	this.lastIndex = 0;
	this.imgId = "map";
	this.seconds = 4000;
}

myImages.prototype.next = function() {
	if(this.lastIndex == this.images.length-1) {
		this.lastIndex = 0;
	}else{
		this.lastIndex += 1;
	}
}

myImages.prototype.run = function() {
	document.getElementById(this.imgId).src=this.basePath+this.images[this.lastIndex];
	setTimeout("images_run()",this.seconds);
	this.next();
}

a = new myImages();
$(document).ready(function() {
	setTimeout("images_run()",a.seconds);
});

function images_run() {
	a.run();
}

