$(document).ready(function() {
	post_description();
});


function post_description () {
	$(".summary_image").hover(
		function(){
			$(this).children(".summary_copy").fadeIn("slow")
		},
		function() {
			$(this).children(".summary_copy").fadeOut("1s")
		}
	)
}