function StartPage() {

	this.jpegs = new Array();	
	this.buttons = new Array();
	this.currentImg = 0;
	
	this.init = function()
	{			
		if(document.getElementById("flashdiv").innerHTML.indexOf("JPEG") >= 0)
		{		
			jpegs = document.getElementById('offerimages').getElementsByTagName('img');
			buttons = document.getElementById('buttonimages').getElementsByTagName('img');
		
			setTimeout("sp.imageSwitch()", jpegs[this.currentImg].getAttribute("time"));
		}
	}		
	
	this.imageSwitch = function()
	{
		jpegs[this.currentImg].style.display = "none";
		
		buttons[this.currentImg].src = "/images/shop/startpage/jpegbutton_inactive.gif";
		
		
		
		this.currentImg++;
		
		if(this.currentImg > jpegs.length - 1)
			this.currentImg = 0;			
	
		jpegs[this.currentImg].style.display = "block";
		
		buttons[this.currentImg].src = "/images/shop/startpage/jpegbutton_active.gif";
			
		setTimeout("sp.imageSwitch()", jpegs[this.currentImg].getAttribute("time"));				
					
	}
}	


var sp = new StartPage();
addEvent(window, "load", function(){sp.init();})