$(document).ready(function(){
	
	$("a").click(function(){
		$(this).blur();
	});
	
	//When mouse rolls over
	 $("#find").mouseover(function(){
		$(this).stop().animate({height:'210px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$("#find").mouseout(function(){
		$(this).stop().animate({height:'35px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	}); 
	
		//When mouse rolls over
	$("#community").mouseover(function(){
		$(this).stop().animate({height:'290px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$("#community").mouseout(function(){
		$(this).stop().animate({height:'35px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});

		//When mouse rolls over
	$("#myMix").mouseover(function(){
		$(this).stop().animate({height:'340px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$("#myMix").mouseout(function(){
		$(this).stop().animate({height:'35px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
			//When mouse rolls over
	$("#submit").mouseover(function(){
		$(this).stop().animate({height:'210px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$("#submit").mouseout(function(){
		$(this).stop().animate({height:'35px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});


});
