jQuery(document).ready(function(){
	if(jQuery(".contact-person").length > 0){
		jQuery(".contact-person .wp-post-image").hover(function(){
			jQuery(this).addClass("hover");
			jQuery(this).animate({
				height: "240px",
				width: "432px",
				marginLeft: "-108px",
				marginTop: "-60px"
			}, 200);
		},function(){
			var This = this;
			
			jQuery(this).animate({
				height: "120px",
				width: "216px",
				marginLeft: "0",
				marginTop: "0"
			}, 200, "linear", function(){
				jQuery(This).removeClass("hover");
			});
		})
	}
});
