$(document).ready(function(){
				
				$('#homem').click(function(){
            	$('.allgruen').animate({ backgroundColor: '#8EBF2E' }) });
				$('#leistungenm').click(function(){
            	$('.allgruen').animate({ backgroundColor: '#47AD59' }) });
				$('#preisem').click(function(){
            	$('.allgruen').animate({ backgroundColor: '#528C73' }) });
				$('#kontaktm').click(function(){
            	$('.allgruen').animate({ backgroundColor: '#357F90' }) });
				$('#agbm').click(function(){
            	$('.allgruen').animate({ backgroundColor: '#6A639C' }) });
				
				$('#homem').click(function(){
            		$(this).css({ textDecoration: 'underline' }) 
					$('#leistungenm').css({ textDecoration: 'none' }) 
					$('#preisem').css({ textDecoration: 'none' }) 
					$('#kontaktm').css({ textDecoration: 'none' }) 
					$('#agbm').css({ textDecoration: 'none' }) 
					});
				
				$('#leistungenm').click(function(){
            		$(this).css({ textDecoration: 'underline' }) 
					$('#homem').css({ textDecoration: 'none' }) 
					$('#preisem').css({ textDecoration: 'none' }) 
					$('#kontaktm').css({ textDecoration: 'none' }) 
					$('#agbm').css({ textDecoration: 'none' }) 
					});
				
				$('#preisem').click(function(){
            		$(this).css({ textDecoration: 'underline' }) 
					$('#leistungenm').css({ textDecoration: 'none' }) 
					$('#homem').css({ textDecoration: 'none' }) 
					$('#kontaktm').css({ textDecoration: 'none' }) 
					$('#agbm').css({ textDecoration: 'none' }) 
					});
				
				$('#kontaktm').click(function(){
					$(this).css({ textDecoration: 'underline' }) 
					$('#leistungenm').css({ textDecoration: 'none' }) 
					$('#preisem').css({ textDecoration: 'none' }) 
					$('#homem').css({ textDecoration: 'none' }) 
					$('#agbm').css({ textDecoration: 'none' }) 
					});
				
				$('#agbm').click(function(){
					$(this).css({ textDecoration: 'underline' }) 
					$('#leistungenm').css({ textDecoration: 'none' }) 
					$('#preisem').css({ textDecoration: 'none' }) 
					$('#kontaktm').css({ textDecoration: 'none' }) 
					$('#homem').css({ textDecoration: 'none' }) 						  
            	 	});
				
				});		

			
			
			
			
