$(function() { 
 $('#contact-box').hide();
  $('a.contact-show').click(function() {
 $('#contact-box').slideToggle(400);
 return false;
  });
  });
$(function() { 
  $('p.top-content-hidden').hide();
  $('a.readmore').click(function() {
 $('p.top-content-hidden').slideToggle(400);
 return false;
    });
  });