﻿$(function() {
    $(".galleryimages a").click(function(e) {
        e.preventDefault();
        $(".productgalleryZoom img:first").attr("src", "/UserFiles/Image/the_book/" + $(this).attr("id"));
        $(".productgalleryZoom a").attr("href", $(this).attr("href"));
        $(".productgalleryZoom p").text($(this).attr("title"));
    });

    $('.productgalleryZoom a').lightBox();
});