﻿/// <reference path="../jquery-1.2.6.js" />

$(document).ready(function() {
    $('#productImageViewer').click(function() { $('#productImageViewer').hide(); });
});

function LoadProductPage(url) {
    $(this).css("cursor", "wait");
    $('#productImageViewer').hide();
    $("#Section").load(url + " #Section", function() {
        InitAjax();
        $(this).css("cursor", "pointer");
    });
}
function ViewImage(o, imageUrl) {
    $('#productImageViewer').css('top', ($('#' + o.id).position().top - $('#productImageViewer').height() + 5) + 'px');
    $('#productImageViewer').css('left', ($('#' + o.id).position().left) - 5 + 'px');
    $('#productImageViewer').html('<img src="' + imageUrl + '">');
    $('#productImageViewer').show();
    return false;
}
