var current_teaser = 0;
var interval = "";

$(document).ready(function(){
	if($('div.teaserimage').length > 1)
	{
		interval = window.setInterval("change_teaser()", 8000);
	}
});


function change_teaser()
{
	previous_teaser = current_teaser;
	current_teaser++;
	if(current_teaser >= $('div.teaserimage').length)
	{
		current_teaser = 0;
	}
	teaser_to_show = $('div.teaserimage')[current_teaser];
	teaser_to_hide = $('div.teaserimage')[previous_teaser];

	/*
	$('div.teaserimage:visible').fadeOut("slow", function(){
		$(teaser_to_show).fadeIn("slow");
	});
	*/
	
	$('div.teaserimage:visible').hide();
	$(teaser_to_show).show();
	
	

}
