this.imagePreview = function(){	
		
		xOffset = 80;
		yOffset = 40;
		
	$("a.toolTip").hover(function(e){
		this.t = this.title;
		content = this.t;
		$("body").append("<div id='preview'>"+content+"</div>");
		this.title = "";								 
		$("#preview")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px")
			.fadeIn(100);						
    },
    function(){
		content = "";
		this.title = this.t;
		$("#preview").remove();
    });
	$("a.toolTip").mousemove(function(e){
		$("#preview")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px");
	});			
};

// starting the script on page load
$(document).ready(function(){
	imagePreview();
});
