$(function(){

var meinehoehe = 0;
	activateitem = function(id) {
                                          if ($("#link2").length == 0) 
                                           {
                                           $("#link1").css("z-index", "10").show();
                                           }
                                          else
                                           {
		if(lastactive != ''){
			$("#link" + lastactive).css("z-index", "5");	
			if(beforelastactive != ''){
		                     $("#link" + beforelastactive).hide();	
			}
			beforelastactive = lastactive;
		}
		lastactive = id;	
	         $("#link" + beforelastactive).css("z-index", "5");
		$("#link" + id).css("z-index", "10").animate({opacity: 'toggle'}, "slow", function(){ $("#link"+beforelastactive).hide(); });
                                  }		
	};

	activateitem(1);		

});

var aktiv = window.setInterval("changeImg()", 5000);
var active = true;
var lastactive = '';
var beforelastactive = '';
var count = 2;

function changeImg () {
if (active) {
		$(".uncontrolled-interval").html(count);

if ($("#link"+count).length == 0) {
 count = 1;
}



 if (count == 9) { activateitem(1); }
 else { activateitem(count);}
 count = count + 1;

  if (count >= 9){
  count = 1;
//window.clearInterval(aktiv);
  }
}

}
