﻿$(document).ready(function () {
    $("#product-nav ul li.unselected a").mouseenter(function () { $(this).find(".shine").fadeIn() });
    $("#product-nav ul li.unselected a").mouseleave(function () { $(this).find(".shine").fadeOut() });
    
    if ($.browser.msie) {
        $(".shine").click(function () { window.location = ($(this).parent().attr('href').replace('javascript:', '')) });
    }

    var gridheight = 0;
    var gridheight1 = 0;

    $(".address-grid .address-item").each(function (index) {
        if ($(this).height() > gridheight) {
            gridheight = $(this).height();
        }
    });
    $(".address-grid .address-item").css('height', gridheight);

    $(".checkout-page .checkout-data").each(function (index) {
        if ($(this).height() > gridheight) {
            gridheight = $(this).height();
        }
    });
    $(".checkout-page .checkout-data").css('height', gridheight);
});
