$(document).ready(function(){
  $("div[class='fullsize']").prepend("<span></span>");
  $("div[class='featured'] img").wrap("<div></div>");
  $(".featured a img").hover(function() {
    $(this).animate({ opacity: 0.3 }, 300);
  },function() {
    $(this).animate({opacity: 1 }, 300);
  });
  $('a[@rel*=lightbox]').lightBox({
  	overlayOpacity: 0.8,
  	imageLoading: 'http://www.freshivore.net/wp-content/themes/freshivore/images/lightbox-ico-loading.gif',
  	imageBtnClose: 'http://www.freshivore.net/wp-content/themes/freshivore/images/lightbox-btn-close.gif',
  	imageBtnPrev: 'http://www.freshivore.net/wp-content/themes/freshivore/images/lightbox-btn-prev.gif',
  	imageBtnNext: 'http://www.freshivore.net/wp-content/themes/freshivore/images/lightbox-btn-next.gif',
  	containerResizeSpeed: 350,
  	txtImage: 'Screenshot'
     });
});