﻿this.screenshotPreview = function() {

    xOffset = 16;
    yOffset = 16;

    $("a.SonSoftOrgulhoScreenshot").hover(function(e) {
        this.t = this.title;
        this.title = "";
        var c = (this.t != "") ? "<br/>" + this.t : "";
        $("body").append("<div id='SonSoftOrgulhoScreenshot'><img src='" + this.rel + "' alt='Carregando...' />" + c + "<br /></div>");
        $("#SonSoftOrgulhoScreenshot")
			.css("top", (e.pageY + xOffset) + "px")
			.css("left", (e.pageX + yOffset) + "px")
			.fadeIn("fast");
    },
	function() {
	    this.title = this.t;
	    $("#SonSoftOrgulhoScreenshot").remove();
	});
	$("a.SonSoftOrgulhoScreenshot").mousemove(function(e) {
	$("#SonSoftOrgulhoScreenshot")
			.css("top", (e.pageY + xOffset) + "px")
			.css("left", (e.pageX + yOffset) + "px");
    });
};

$(document).ready(function() {
    screenshotPreview();
});