//<![CDATA[	
 $(document).ready(function() {
	$('.table a').imgPreview({
		containerID: 'imgpreview',
		/* Change srcAttr to rel: */
		srcAttr: 'rel',
		distanceFromCursor: {top:-250, left:10},
		// When container is shown:
		onShow: function(link){
			$('<span>' + link.title + '</span>').appendTo(this);
		},
		// When container hides: 
		onHide: function(link){
			$('span', this).remove();
		}
	});
});
//]]>
