$(document).ready(function() {
   $('#gallery a').lightBox({   // Select all links with lightbox class
	imageLoading: 'http://www.grup07.org/wp-content/uploads/jquery-lightbox-0.4/lightbox-ico-loading.gif',
	imageBtnClose: 'http://www.grup07.org/wp-content/uploads/jquery-lightbox-0.4/lightbox-btn-close.gif',
	imageBtnPrev: 'http://www.grup07.org/wp-content/uploads/jquery-lightbox-0.4/lightbox-btn-prev.gif',
	imageBtnNext: 'http://www.grup07.org/wp-content/uploads/jquery-lightbox-0.4/lightbox-btn-next.gif',
        imageBlank: 'http://www.grup07.org/wp-content/uploads/jquery-lightbox-0.4/lightbox-blank.gif',
        txtImage: 'Imatge',
	txtOf: 'de' ,
	containerResizeSpeed: 350
  });

  //http://www.learningjquery.com/2007/09/animated-scrolling-with-jquery-12
  $('a[href*=#]').click(function() {
    if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
      var $target = $(this.hash);
      $target = $target.length && $target || $('[name=' + this.hash.slice(1) +']');
      if ($target.length) {
        var targetOffset = $target.offset().top;
        $('html,body')
          .animate({scrollTop: targetOffset}, 900);
        return false;
      }
    }
  });

  $('.ayuda').Tooltip({ 
    delay: 0 
  });
});

