$(document).ready(function(){
	$('div.box1 div.heading').hover(function(){
		$(this).find('p').slideDown();
	}, 	function(){
			$(this).find('p').slideUp();
	});
});


