$(document).ready(function(){
	
	function bild_kleiner(){
			$(".bild_animieren").animate({ height: '300', left: '-20', top: '-40', width: '1050'}, 20000);
			bild_groesser();
		}
	
	function bild_groesser(){
			$(".bild_animieren").animate({ height: '275', left: '0', top: '0', width: '961'}, 20000);
			bild_kleiner();	
		}
	
	
	
	$(".ang_mehr").mouseover(function(){
			$(this).css({
					cursor: "pointer",
					background: "#4B4D3F"
				});
		});
	$(".ang_mehr").mouseout(function(){
			$(this).css({
					cursor: "normal",
					background: "url(../layout/menu_bg_midmenu.jpg)"
				});
		});
	$(".ang_mehr").click(function(){
			
			$(this).next(".ang_text").toggle();
			
		
		});	


	bild_kleiner();











});
