$(document).ready(function() {
        $('.team_link').mouseover(function() {
		$(this).next().next().animate({"margin-top": "-=77px"}, "slow");
		$(this).next().next().next().animate({"margin-top": "-=77px"}, "slow");
		$(this).parent().next().animate({"margin-top": "-=77px"}, "slow");
		});
		$('.team_link').mouseout(function() {
		$(this).next().next().animate({"margin-top": "+=77px"}, "slow");
		$(this).next().next().next().animate({"margin-top": "+=77px"}, "slow");
		$(this).parent().next().animate({"margin-top": "+=77px"}, "slow");
    	});
		
		$('.referenzen_link').mouseover(function() {
		$(this).next().next().animate({"margin-top": "-=74px"}, "slow");
		$(this).next().next().next().animate({"margin-top": "-=74px"}, "slow");
		$(this).parent().next().animate({"margin-top": "-=74px"}, "slow");
		});
		$('.referenzen_link').mouseout(function() {
		$(this).next().next().animate({"margin-top": "+=74px"}, "slow");
		$(this).next().next().next().animate({"margin-top": "+=74px"}, "slow");
		$(this).parent().next().animate({"margin-top": "+=74px"}, "slow");
    	});
		
		
		$('.hover_img2').hover(function() {
		$(this).stop().fadeTo('slow', 0);
		}, function() {
		$(this).stop().fadeTo('slow', 1);
		});

		
		
     });
