jQuery(document).ready(function() {
  jQuery('#collapse-site').click(function() {
    if(jQuery('#collapse-container').is(':hidden')) {
      jQuery(this).attr('style', 'background: none;');
      jQuery('#collapse-container').fadeIn();
      jQuery('#social-networking').fadeIn();
    } else {
      jQuery(this).attr('style', 'background: #000');
      jQuery('#collapse-container').fadeOut();
      jQuery('#social-networking').fadeOut();
    }
  });
});
