$(document).ready(function() {
	$('a.preview').imgPreview({
	    imgCSS: {
	        // Limit preview size:
	        width:150
	    },
		preloadImages:false,
		distanceFromCursor:{
			top:-80,
			left:-195
		},
		onShow: function(link){
	        // Reset image:
	        $('img', this).stop().css({opacity:0});
		 },
	    onLoad: function(){
	        // Animate image
	        $(this).animate({opacity:1}, 300);
	    }
	});
});
