this.screenshotPreview = function(){	
		xOffset = 10;
		yOffset = 30;
	$("a.tp").hover(function(e){
		this.t = this.title;
		this.title = "";

		$("body").append("<p id='tp'><img src='/img/alza/f5/" + this.rel + ".jpg' alt='" + this.title + "' /></p>");						 
		$("#tp")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px")
			.fadeIn("fast");						
    },
	function(){
		this.title = this.t;	
		$("#tp").remove();
    });	
	$("a.tp").mousemove(function(e){
		$("#tp")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px");
	});			
};

$(document).ready(function(){
	screenshotPreview();
});
