﻿$(function () {
    // Image Gallery
    $(".productGallery a").click(function () {
        var imageLink = $(this).attr("href");
        $(".productGallery > img").attr("src", imageLink);
        $(".productGallery").find(".description").remove();
        var imageTitle = $(this).find("img").attr("title");
        var descriptionHtml = "<p class='description'>" + imageTitle + "</p>";
        $(".productGallery > img").after(descriptionHtml);

        return false;
    });

    if ($(".carousel").length) { // load the carousel script
        $.getScript("/scripts/eqtrCarousel.js");
    }

});

