$(document).ready(function(){
  $("html").addClass("js");
  if ($("body").hasClass('noAccordion') == false) {
    jQuery('.lcol .boxcontent').accordion({ 
      autoheight: false,
      header: 'h3.head',
      alwaysOpen: false,
      active: false
    });
  }
  $("a[rel^='prettyPhoto']").prettyPhoto({opacity: 0.50, theme: 'light_rounded'});
  $("a.highlight").click(function () {
   var $target = $(this.hash);
   $target = $target.length && $target || $('[name=' + this.hash.slice(1) +']');
   $target.css('display','block');
   $target.animate({backgroundColor: '#ffe500'}, 1500, function () {
      $target.animate({backgroundColor: '#94ACC6'}, 1500, function () {  });
    });
   return false;
  });
});
