var last_img = 0;

var images = new Array();



function slide_img()
{
	var next = last_img;
	
	next++;
	
	if (next >= 6)
		next=0;
	
	$("#headerimg_"+next).fadeIn(1000);
	$("#headerimg_"+last_img).fadeOut(1000);
	
	/* $("#header").animate( {
		backgroundImage: "url('"+images[next]+"');"
		}); */
	
	//alert(images[next]);
	last_img = next;
}

$("document").ready(function() {
	setInterval('slide_img()',5000);
});



function open_tradition()
{
	var fenster = window.open('popup.html','Tradition', 'menubar=no,resizable=no,height=168,width=849,scrollbars=no,toolbar=no,status=no');
	fenster.focus();
}
