$(document).ready(function(){

	$("section").hover(function() {
		$(this).find(".image").animate({
			height: "160px",
			opacity: ".8"
		}, 200);
	}, function() {
		$(this).find(".image").animate({
			height: "200px",
			opacity: "1"
		}, 200);
	});

});
