jQuery(document).ready(function(){

	jQuery("#leaf-25 .content").hover(
		function() {
			jQuery(this).animate({height: "+=200", width: "+=75", marginTop: "-=180", marginLeft: "-=37"}, "400")
			.addClass("active");
		},

		function() {
			jQuery(this).animate({height: "-=200", width: "-=75", marginTop: "+=180", marginLeft: "+=37"}, "400")
			.removeClass("active");
		}

	);
});
