$(function() {
    $(".sh_main_bc table tr.rows-8").css("display", "");
    $("#d-8").removeClass("sh_main_bt1")
             .addClass("sh_main_bt");
})

$(function() {
    $("a[href^='#brand-']").click(function() {
        $("div[id^='d-']").removeClass("sh_main_bt")
                          .addClass("sh_main_bt1");
        $("tr[class^='rows-']").css("display", "none");
        no = $(this).attr("href").split('-')[1];
        $(".sh_main_bc table tr.rows-" + no).css("display", "");
        $("#d-"+no).removeClass("sh_main_bt1")
                   .addClass("sh_main_bt")
    });
})

$(function() {
    $(".sh_main_bc table tr:odd").css("background", "#dfd");
})