this.imagePreview = function(){	
		xOffset = 10;
		yOffset = 30;
		xImage = 600;
		
		yOffset = yOffset + xImage;
	
	$("a.preview").hover(function(e){
		//il mouse è sopra
		$("body").append("<p id='preview'><img src='"+ this.href +"'/></p>");								 
		$("#preview")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX - yOffset) + "px")
			.fadeIn("fast");						
    },
	//il mouse se n'è iiito
	function(){
		this.title = this.t;	
		$("#preview").fadeOut("fast").remove();
    });
	//segui il mouse!
	$("a.preview").mousemove(function(e){
		$("#preview")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX - yOffset) + "px");
	});			
};
