 this.screenshotPreview = function(){	
		
		xOffset = -50; // dist X maus
		yOffset = -25; // dist Y maus
		
	$("a.imgthumb").hover(function(e){ //cand e pe link
		this.t = this.title;
		this.title = "";
		initstyle = this.style.color;
		this.style.color = "#990000";
		var c = (this.t != "") ? "<br/>" + this.t : "";
		$("body").append("<p align='center' id='screenshot'><img src='"+ this.rel +"' />"+ c +"</p>");								 
		$("#screenshot")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px")
			.fadeIn("slow");						
    },
	function(){ //cand pleaca de pe link
		this.title = this.t;
		this.style.color = initstyle;
		$("#screenshot").remove();
    });	
	$("a.imgthumb").mousemove(function(e){
		$("#screenshot")
			.css("top",(e.pageY + yOffset) + "px")
			.css("left",(e.pageX - xOffset) + "px");
	});			
};


// initializare onload de JQuery
$(document).ready(function(){
	screenshotPreview();
});