this.quickpreviewPreview = function(){	
		
	xOffset = -10;
	yOffset = 20;
		
	$("a.quickpreview").hover(function(e){
		this.t = this.title;
		this.title = "";
		
		var c = (this.t != "") ? "<br/>" + this.t : "";
		
		$("body").append(	"<p id='quickpreview'>" + crkt_hover_array[this.rel].hover_html + "</p>");

		$("#quickpreview")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px")
			.fadeIn("fast");						
    },
	function(){
		this.title = this.t;	
		$("#quickpreview").remove();
    });	
	$("a.quickpreview").mousemove(function(e){
		$("#quickpreview")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px");
	});			
};


// starting the script on page load
$(document).ready(function(){
	quickpreviewPreview();
});
