﻿this.screenshotPreview = function(){	
	/* CONFIG */
		
		xOffset = -20;
		yOffset = 210;
		
		// these 2 variable determine popup's distance from the cursor
		// you might want to adjust to get the right result
		
	/* END CONFIG */
	jQuery("a.product").hover(function(e){
		this.t = this.title;
		this.title = "";	
		var c = (this.t != "") ? "<br/>" + this.t : "";
		jQuery("body").append("<p id='screenshot'><img src='"+ this.rel +"' alt='url preview' />"+ c +"</p>");								 
		jQuery("#screenshot")
			.css("top",(jQuery("#ctl00_tbsuchen").offset().top - xOffset) + "px")
			.css("left",(jQuery("#ctl00_tbsuchen").offset().left + yOffset) + "px")
			.fadeIn("fast");
    },
	function(){
		this.title = this.t;	
		jQuery("#screenshot").remove();
    });	
		
};


// starting the script on page load

