Hos = {
	store: {
		imageList: ["/image/store/Butik-02.jpg", "/image/store/Butik-03.jpg", "/image/store/Butik-04.jpg", "/image/store/Butik-05.jpg", "/image/store/Butik-06.jpg", "/image/store/Butik-07.jpg", "/image/store/Butik-08.jpg", "/image/store/Butik-09.jpg"],

		imageCounter: 1,
		nextImage: function() {
			var obj = document.getElementById("storeImage1");
			obj.src = Hos.store.imageList[(Hos.store.imageCounter++) % Hos.store.imageList.length];
		},

		animate: function() {
			setTimeout("Hos.store.nextImage(); Hos.store.animate()", 5000);
		}
	},

	product: {
		imageCounter: 0,
		nextImage: function() {
			var obj = document.getElementById("pi" + (Hos.product.imageCounter % 24));
			obj.src = "/image.php?i=" + (Hos.product.imageCounter++);
		},

		animate: function() {
			setTimeout("Hos.product.nextImage(); Hos.product.animate()", 400);
		}
	}
}
