$(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 rolls over
	$(".drei").mouseover(function(){
		$(this).stop().animate({height:'350px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$(".drei").mouseout(function(){
		$(this).stop().animate({height:'64px'},{queue:false, duration:600, 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 rolls over
	$(".vier").mouseover(function(){
		$(this).stop().animate({height:'350px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$(".vier").mouseout(function(){
		$(this).stop().animate({height:'64px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
});
