﻿var CurrentPicture = "";

function loadPicture(pic, big_pic) {

    CurrentPicture = pic;

    var str = "<a href=\"" + big_pic + "\" id=\"ZoomImage\"><img src=\"" + pic + "\" style=\"cursor:pointer;\" border=\"0\" /></a>";

    $("#ProductImageHolder").html(str);
    $("a#ZoomImage").fancybox(); 

}

function zoomCurrentPicture() {

}

$(document).ready(function() {
    $("a#ZoomImage").fancybox(); 
});
