this.productPreview = function()
{	
	xOffset = 10;
	yOffset = 30;
		
	$("a.product").hover(function(e)
	{
		this.t = this.title;
		this.title = "";	
		var info = (this.t != "") ? "<br/>" + this.t : "";
		var img = this.rel;
		
		$("body").append("<p id='product'><img src='" + img + "' />" + info + "</p>");	
									 
		$("#product")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px")
			.fadeIn("fast");						
    },
	
	function()
	{
		this.title = this.t;	
		$("#product").remove();
    });	
	
	$("a.product").mousemove(function(e)
	{
		$("#product")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px");
	});			
};


// starting the script on page load
$(document).ready(function(){
	productPreview();
});
