this.imagePreview = function(click){	
	/* CONFIG */
		
		xOffset = 205;
		yOffset = 525;
		
	$("a.preview").hover(function(e){
		this.t = this.title;
		this.title = "";	
		var c = (this.t != "") ? "<br/>" + this.t : "";
		$("body").append("<p id='preview'><img src='"+ this.href +"' alt='Image preview' />"+ c +"</p>");								 
		$("#preview")
			.css("top",($(this).position().top - xOffset) + "px")
			.css("left", ($(this).position().left - yOffset) + "px")
			.fadeIn("fast");						
    },
	function(){
		this.title = this.t;	
		$("#preview").fadeOut("medium",function(){$(this).remove()});
    }).click(click);				
};



