		jQuery("a.gallery-item").next("br").remove();
		jQuery("a.gallery-item").mouseover(function(e) {				   
			jQuery("body").append("<img class='features-hover' src='"+jQuery(this).attr("rel")+"' alt='' />");
			jQuery("img.features-hover").css({display:"none", visibility:"visible"}).fadeIn(350);
			jQuery(this).children("a.gallery-item img").stop().animate({opacity: 0.5, top: "5px", left: "5px"}, "fast");
		}).mousemove(function(e) {
			jQuery("img.features-hover").css({left:e.pageX+-210, top:e.pageY-265});
		}).mouseout(function() {
			jQuery(this).children("a.gallery-item img").stop().animate({opacity: 1, top: "0", left: "0"}, "fast");
			jQuery("img.features-hover").remove();
		});
		
		jQuery("a.gallery-item").fancybox({
			'overlayShow'	: false,
			'hideOnContentClick' : true,
			'transitionIn'	: 'elastic',
			'transitionOut'	: 'elastic',
			'titlePosition'	: 'outside',
			'easingIn'      : 'swing',
			'easingOut'     : 'swing'
		});