﻿$(function () {
    var x = -100;
    var y = -210;
    $("a.goods_pic").mouseover(function (e) {
        var imgTitle = this.title ? this.title : "";
        var tooltip = "<div id='tooltip'><img src='" + $(this).attr("tag") + "' alt='" + imgTitle + "'/></div>";
        $("body").append(tooltip);
        $("#tooltip").css({
        "top": (e.pageY + y) + "px",
        "left": (e.pageX + x) + "px"}).show("fast");
    }).mouseout(function () {
        this.title = this.myTitle;
        $("#tooltip").remove();
    }).mousemove(function (e) {
        $("#tooltip").css({
        "top": (e.pageY + y) + "px",
        "left": (e.pageX + x) + "px"});
    });
})
