﻿
window.setInterval("changeTemplate()", 2000);
var cur = 1
var max = 4
function changeTemplate() {
	cur = cur + 1
	if (cur > max) {
		cur = 1;
	};
	document.getElementById("img_Template").src = "simplicity/images/templates/thumbs/" + cur + ".jpg";
	// the following line causes a bit of problem with the footer in IE7 - not sure why, haven't really investigated
	// document.getElementById("div_TemplateText").innerHTML = "Template #" + cur;
};