//email alerts show the privacy policy

$(document).ready(function() {

//make  the detail section hide when the DOM is ready. 
  $('div.privacy-details div').hide();
  
  //bind a click handler to the paragraph with class.pp 
  $('div.privacy-details p').click(function() {
  
  //drop the .slidetoggle() method inside the click method. 
  	$(this).next().slideToggle('fast');
  });
});