$(document).ready(function() {

    var PreviousImageID = "";
    var FirstImage = $("#featured-image-container img:first");
    if (FirstImage.length != 0) {
        PreviousImageID = FirstImage.fadeIn(300).attr("class").replace("img", "");
    }


    //hook up image clicks
    $("#thumbnail-image-container a").click(function(e) {
        e.preventDefault();
        var id = $(this).attr("href").replace("#", "");
        if (PreviousImageID != id) {
            $("#featured-image-container .img" + PreviousImageID).fadeOut(300);
            $("#featured-image-container .img" + id).fadeIn(300);
            PreviousImageID = id;
        }
    });

    //fix grey border around chart
    if ($(".productchart-container").length != 0) {
        var tempWidth = $("#productchart").width();
        if (tempWidth > 280) {
            $(".productchart-container").width(tempWidth);
        }
        else {
            $(".productchart-container").width(280);
        }
    }

    $(".popup").click(function(e) {
        e.preventDefault();
        window.open($(this).attr("href").replace("..", ""), '', 'width=700,scrollbars=yes');
    });

});
