$(document).ready(function() {

  $('#contactbox').hide();
  $('a#cshow').click(function() {
 $('#contactbox').slideDown('fast');
 return false;
  });
  $('a#chide').click(function() {
 $('#contactbox').slideUp('slow');
 return false;
  });
  $('a#ctoggle').click(function() {
 $('#contactbox').slideToggle(400);
 return false;
  });
});