// JavaScript Document

 this.screenshotPreview = function()
 {	
		xOffset = 115;
		yOffset = -75;
		
	$("area.tooltip").mouseover(function(e)
	{
		this.t = this.title;
		this.title = "";	
		var c = (this.t != "") ? "" + this.t : "";
		$("body").append("<p id='screenshot'>"+ c +"</p>");								 
		$("#screenshot")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px")
			.fadeIn(450);						
    });
	
	$("area.tooltip").mouseout(function(){
		this.title = this.t;	
		$("#screenshot").remove();
    });	
	
	$("area.tooltip").mousemove(function(e){
		$("#screenshot")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px");
	});			
};


// starting the script on page load
$(document).ready(function()
	{
		screenshotPreview();
	});


