$(document).ready(function() {
	
	$('div.show p').hide(); 
	
	$('div.show a').click(function() {
     
	$(this).next().show('slow');
       return false;
	});
	
	$('div.show a.hide').click(function() {
	$(this).parent().hide('fast');
        return false;
	});
});







