﻿
function pageLoad() {

    $("#pg-brands td").bind("mouseenter", function () {
        //    $(this).children("a").fadeIn("slow");
        $(this).children("a").show();
        $(this).closest("li").children("div").css("background-color", "#F78F1E");
    });

    $("#pg-brands td").bind("mouseleave", function () {
        //    $(this).children("a").fadeOut("slow");
        $(this).children("a").hide();
        $(this).closest("li").children("div").css("background-color", "");
    });
    
}

function FindStores(lang, brand, collection) {
    ShowModalPopup("/consumer/contents/store/store-from-brand-modal.aspx?lang=" + lang + "&collection=" + collection + "&brand=" + brand, 'Cartorama Stores', 750, 580);
}

function NoStores(lang) {
    ShowModalPopup("/consumer/contents/store/no-store-from-brand-modal.aspx?lang=" + lang, 'Cartorama Stores', 400, 150);
}