jQuery(document).ready(function() {  
  
  jQuery('.lightbox').lightBox({fixedNavigation:true});
  //jQuery('.lightboxSpan a').lightBox();
  if ($("a[rel='lightbox']").length) {
   $("a[rel='lightbox']").lightBox();
  }
  
  // blog comment
  jQuery('.commentListListing .item').mouseover(function() {
    jQuery(this).addClass('item-selected');
  });
  jQuery('.commentListListing .item').mouseout(function() {
    jQuery(this).removeClass('item-selected');
  });
});

