jQuery.noConflict();
jQuery(document).ready (function () {
  jQuery('#copyright').click (function () {
      if ( document.getElementById ('contingutCopyright').style.display == 'block' ) {
         jQuery('#contingutCopyright').slideUp ('slow');
      } else {
       jQuery('#contingutCopyright').slideDown ('slow');
      }
  });  
  jQuery('.tancar_error_404').click (function () {
      jQuery('#pag_error_404').fadeOut('slow');
      jQuery('#pag_error_404_opacity').fadeOut('slow');
  });
});

