﻿
$(function() {
    $('#content .downloads-list a').each(function() {
        var href = $(this).attr('href');

        if (href.indexOf('Movie.aspx') > -1) {

            $(this).click(function() {
                window.open(href, 'movie', 'width=650, height=750, scrollbars=yes');
                return false;
            });
        }
    });

    $('#content .biwhite_prod_pic a').each(function() {
        var href = $(this).attr('href');

        if (href.indexOf('ProductImg.aspx') > -1) {

            $(this).click(function() {
                window.open(href, 'productimage', 'width=650, height=750, scrollbars=yes');
                return false;
            });
        }
    });


    $('#content .product-navigation-columns a.comments').each(function() {
        var href = $(this).attr('href');

        $(this).click(function() {
            window.open(href, 'productcomments', 'width=850, height=650, scrollbars=yes');
            return false;
        });
    });
});
