$(document).ready(function() {
    $('ul.product-menu li a').hover(function() {
        var price = $(this).find('span.text').html();
        var bigImage = $(this).attr('rel');
        $('.product-image a img').attr({
            src: bigImage
        })
        $('.product-image a span').html(price);
    })

    var pc = getElementByID_Master("ProductColors");

    if (pc != null) {
        var length = pc.options.length;

        if (length == 2)
            getElementByID_Master("ProductColors").selectedIndex = 1;

        if (aSKUPreviousCost[getElementByID_Master("ProductColors").selectedIndex][1] == "") {
            $('#price-sale').removeClass('price-sale');
        }

        $(".unselected").click(function() {
            if (aSKUPreviousCost[getElementByID_Master("ProductColors").selectedIndex][1] == "") {
                $('#price-sale').removeClass('price-sale');
            } else {
                $('#price-sale').addClass('price-sale');
            }
        });

        $(".selected").click(function() {
            if (aSKUPreviousCost[getElementByID_Master("ProductColors").selectedIndex][1] == "") {
                $('#price-sale').removeClass('price-sale');
            } else {
                $('#price-sale').addClass('price-sale');
            }
        });
    }

    $('.photo-frame a.mini-thumb').hover(function() {
        var bigDetailImage = $(this).attr('rel');
        $('.photo-frame img.large-image').attr({
            src: bigDetailImage
        })
    })
})