/**
 * VEMMiNA
 * header bild
 *
 * (c) EZdesign.de
 *     Timo Besenreuther
 */


$(document).ready(function() {
	if (headImgs.length > 1) {
		window.setInterval(function() {
			// show next img
			currKey++;
			if (typeof(headImgs[currKey]) == 'undefined') {
				currKey = 0;
			}
			
			var currImg = $('#header_bg').attr('id', 'header_bg_old');
			
			var newImg = new Image();
			newImg.onload = function() {
				$('#header_container').prepend('<img src="'+this.src+'" id="header_bg" style="width:974px;height:170px" />');
				$('#header_bg_old').fadeOut(1000, function() {
					$(this).remove();
				});
			}
			newImg.src = imgPath+headImgs[currKey];
		}, 7000);
	}
});