  (function($){

    $('html').addClass('js');// add class if user used js

    $(function(){
      $("a[href$=jpg], a[href$=png], a[href$=gif], .imgbox").fancybox();// show image

      $('a').each(function(){ // find current link
        if(this.href.split('#')[0] == window.location.href){
          $(this).addClass('current');
        }
      });
    });

  })(jQuery);

