		var teaserItems;
		var currentTeaser = 0;
		
		
		$(document).ready(function()
		{
		//	console.log("ready");
			$("#teaser li").css("display", "block");
			teaserItems = $("#teaser li").hide().size();

			$("#teaser li:eq("+currentTeaser+")").show();
			setInterval(swapTeaser, 5000);
		});
		
		function swapTeaser()
		{
			$("#teaser li:eq("+currentTeaser+ ")").fadeOut("slow");
			currentTeaser = ++currentTeaser%teaserItems;
			$("#teaser li:eq("+currentTeaser+")").fadeIn("slow");
		}
