var pos_slideshow=1;
var aktiv_slideshow=null;
var richtung_slideshow=1;
var new_start=null;

function angebotskasten_gross_hover(kasten)
	{
		if(new_start!=null)
		{
			stop_new_start();
		}
		window.clearTimeout(aktiv_slideshow);
		aktiv_slideshow=null;
		for(var i=1;i<=6;i++)
		{
			if(i==kasten)
			{	
				document.images["hover_"+i].src="./bilder/angebote/angebote_kasten/in.jpg";
				document.images["angebot_bild"].src="./bilder/angebote/angebote_kasten/angebot"+i+".jpg";	
				pos_slideshow=i;
			}
			else
			{
				document.images["hover_"+i].src="./bilder/angebote/angebote_kasten/out.jpg";
			}
		}
	}
	
	function angebotskasten_gross_out()
	{
		new_start=window.setTimeout(function () { angebote_slideshow(pos_slideshow); }, 5000);
	}
	
	function stop_new_start()
	{
		window.clearTimeout(new_start);
		new_start=null;
	}
	
	function angebote_slideshow(a)
	{
		document.images["hover_"+a].src="./bilder/angebote/angebote_kasten/out.jpg";
		
		if(a==6)
		{
			richtung_slideshow=2;
		}
		else if(richtung_slideshow==2 && a==1)
		{
			richtung_slideshow=1;
		}
		
		if(richtung_slideshow==1)
		{
			a=a+1;
		}
		else
		{
			a=a-1;
		}
		
		document.images["hover_"+a].src="./bilder/angebote/angebote_kasten/in.jpg";
		document.images["angebot_bild"].src="./bilder/angebote/angebote_kasten/angebot"+a+".jpg";
		
		aktiv_slideshow=window.setTimeout(function () { angebote_slideshow(a); }, 5000);
	}
	
	function init_start()
	{
			document.images["hover_1"].src="./bilder/angebote/angebote_kasten/in.jpg";
			document.images["angebot_bild"].src="./bilder/angebote/angebote_kasten/angebot1.jpg";
			window.setTimeout(function () { angebote_slideshow(pos_slideshow); }, 5000);
	}

