// independently show and hide
$(document).ready(function() {
  $('div.contact-show:eq(0) > div').hide();  
  $('div.contact-show:eq(0) > h3').click(function() {
  $(this).next().slideToggle('fast');
  });
	
});
