function mtt(i){
	for(j=1;j<6;j++){
		el = document.getElementById('block'+j);
		if(j!=i){
			el.style.zIndex=1;
			document.getElementById('switcherimg'+j).src="/images/allgemein/blaettern.gif";
		}else{
			el.style.zIndex=99;
			document.getElementById('switcherimg'+j).src="/images/allgemein/blaettern_aktiv.gif";
		}

	}
	return false;

}

jQuery(document).ready(function($) {

	
	$('.fadeImg').hover(
			function () {
				$(this).stop().animate({opacity: 0.7}, "slow");
			},
			function () {
				$(this).stop().animate({opacity: 1.0}, "slow");
			}
	);

  });





