function HintergrundbildWechseln(state)
{



   $('#bgimg').fadeTo('fast', 0, function() {

   if(state == "+")
   {
   		counter++;
   }
   else if(state == "-")
   {
   		counter--;
   }
   else if(state == "")
   {
   		counter = 8;
   }

   if(counter > 8)
   {
   		counter = 0;
   }
   else if(counter < 0)
   {
   		counter = 8;
   }

   document.getElementById('bgimg').src = "_bilder/hintergrund" + counter + ".gif";

   $('#bgimg').load(function () {
		 //$('#bgimg').wait();
		$('#bgimg').fadeTo('fast', 1, function() {});
	});

	document.title = "MAIN werbung&event | " + texting[counter]['head'] +"";

	document.getElementById('head').innerHTML = texting[counter]['head'];
	document.getElementById('sub').innerHTML = texting[counter]['sub'];

	document.getElementById('head_shad').innerHTML = texting[counter]['head'];
	document.getElementById('sub_shad').innerHTML = texting[counter]['sub'];

	if(texting[counter]['dark'] == 0)
	{
		document.getElementById('color1').style.color = "black";
		document.getElementById('color2').style.color = "black";
		document.getElementById('color3').style.color = "white";
		document.getElementById('color4').style.color = "white";
	}
	else if(texting[counter]['dark'] == 1)
	{
		document.getElementById('color1').style.color = "#333333";
		document.getElementById('color2').style.color = "#333333";
		document.getElementById('color3').style.color = "white";
		document.getElementById('color4').style.color = "white";
	}
	else if(texting[counter]['dark'] == 2)
	{
		document.getElementById('color1').style.color = "white";
		document.getElementById('color2').style.color = "white";
		document.getElementById('color3').style.color = "black";
		document.getElementById('color4').style.color = "black";
	}

	document.getElementById('uri').href = texting[counter]['uri'];
	Cufon.refresh();


   });

}
