if(document.all)var isIE=true;

var fotos = new Array();

function neu(url,text)
{
	Neu = fotos.length;
	fotos[Neu] = new Array();
	fotos[Neu]["text"]=text;
	fotos[Neu]["pic"]=new Image()
	fotos[Neu]["pic"].src=url;
}

// editiere hier das große bild
exakt=false;		//false = runterskalieren | true = die exakte angegebene größe
height=400;		//bei exakt=false sollte die width sehr hoch gesetzt werden!
width=400;

time=3500	//'slide'Zeit wie lange ein einzelnes Bild angezeigt wird in ms

function skalieren(x,h,w,e)
{
	H=fotos[x]["pic"].height;
	W=fotos[x]["pic"].width;
	W1=W;
	H1=H;
	if(!e)
	{
		if(H>h)
		{
			W1=W*h/H;
			H1=h;
		}
		if(W>w)
		{
			H1=H*w/W;
			W1=w;
		}
	}else
	{
		H1=h;
		W1=w;
	}
	var re = new Array();
	re["w"]=W1;
	re["h"]=H1;
	return(re); W1=""; H1=""; W=""; H="";
}


var nav=0;

NAV=-1;
function show(x,fs)
{
	x=Number(x);
	if(fotos[x])
	{
		var Size = skalieren(x,height,width,exakt);
		if(fs){size="width="+Size["w"]+" height="+Size["h"];  was=false} else {size="";  was=true}
		alt="";
		if(isIE)	document.getElementById("inhalt").filters.blendTrans.Apply();
		document.getElementById("inhalt").innerHTML="<table height=100% width=100%><tr><th><b><img  onclick=\"show('"+x+"',"+was+")\" style=\"cursor:hand;\" "+size+" align=\"absmiddle\" src="+fotos[x]["pic"].src+" "+alt+"></th></tr></table>";
		if(isIE)	document.getElementById("inhalt").filters.blendTrans.Play();
//		document.getElementById("name").innerHTML=fotos[x]["text"];
//		document.getElementById("status").innerHTML=(x+1)+"/"+fotos.length;

	}
	NAV=x
}
var Timer; running=false;
function start()
{
	if(!running)
	{
		slideshow();
		running=true;
	}
}
function slideshow()
{
		NAV++;
		if(NAV>=fotos.length)NAV=0;
		show(NAV,true);
		Timer = setTimeout("slideshow()",time);
//		document.getElementById("status2").innerHTML="[on]";
}
function kill()
{
	running=false
//	document.getElementById("status2").innerHTML="[off]";
	if(Timer)clearTimeout(Timer);
}

function init()
{
	neu("http://www.heavyrubber-shop.com/pics/1.jpg", ""  );
	neu("http://www.heavyrubber-shop.com/pics/2.jpg", ""  );
	neu("http://www.heavyrubber-shop.com/pics/3.jpg", ""  );
	neu("http://www.heavyrubber-shop.com/pics/4.jpg", ""  );
	neu("http://www.heavyrubber-shop.com/pics/5.jpg", ""  );
    neu("http://www.heavyrubber-shop.com/pics/6.jpg", ""  );
	neu("http://www.heavyrubber-shop.com/pics/7.jpg", ""  );
	neu("http://www.heavyrubber-shop.com/pics/8.jpg", ""  );

//	document.getElementById("thumbs").style.height=10+height;
//	setTimeout("document.getElementById('thumbs').innerHTML=thumb_table(0)",500);
start();
}
//-->