$(document).ready(function(){
	
	//Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/
	
	
	//Remove outline from links
	$("a").click(function(){
		$(this).blur();
	});
	
	
	//When mouse is removed
	$("li.team").mouseout(function(){
		$(this).stop().animate({height:"1px"},{queue:false, duration:700, easing: "easeOutBounce"})
	});
	
	//When mouse rolls over
	$("li.team").mouseover(function(){
		$(this).stop().animate({height:"87px"},{queue:false, duration:700, easing: "easeOutBounce"})
	});
		
	
});


$(document).ready(function(){
	
	//Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/
	
	
	//Remove outline from links
	$("a").click(function(){
		$(this).blur();
	});
	
	//When mouse is removed
	$("li.rennen").mouseout(function(){
		$(this).stop().animate({height:'1px'},{queue:false, duration:700, easing: 'easeOutBounce'})
	});
	
	//When mouse rolls over
	$("li.rennen").mouseover(function(){
		$(this).stop().animate({height:'87px'},{queue:false, duration:700, easing: 'easeOutBounce'})
	});
		
	
});
