﻿function ShowStore(store) {
    for (var i = 1; i <= 4; i++) {
        $("#store-" + i).css("display", "none");
        $("#a-store-lnk-" + i).attr("class", "a-stores");
    }

    $("#store-" + store).css("display", "block");
    $("#a-store-lnk-" + store).attr("class", "a-stores-sel");
}
