$(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
	$("#men1,#men4").mouseover(function(){
	$(this).stop().animate({height:'170px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	$("#men5").mouseover(function(){
	$(this).stop().animate({height:'120px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	$("#men2").mouseover(function(){
		$(this).stop().animate({height:'90px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	$("#men3").mouseover(function(){
		$(this).stop().animate({height:'100px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$("#men1,#men2,#men3,#men4,#men5").mouseout(function(){
		$(this).stop().animate({height:'24px'},{queue:false, duration:1600, easing: 'easeOutBounce'})
	});
		
});
