﻿function show_brand_list() {
    $('#ul_brand_list').animate({ height: '250px' }, 'normal', function () {
        $('#div_show_brand_list').hide();
        $('#div_hide_brand_list').show();
    });
}

function hide_brand_list() {
    $('#ul_brand_list').animate({ height: '30px' }, 'normal', function () {
        $('#div_show_brand_list').show();
        $('#div_hide_brand_list').hide();
    });
}

function show_goods_image(sImageUrl, sOriginalUrl) {
    $('#img_goods_image').attr('src', sImageUrl);
    $('#a_goods_image').attr('href', sOriginalUrl);
}

function view_changed(id) {
    $('#select_all li').removeClass('on');
    $('#select_all li[name=select_' + id + ']').addClass('on');
        $('.select_content').hide();
        $('[id^=select_bar_]').hide();
        $('[id^=select_content_]').hide();
        $('#select_content_' + id).show();
    $('#select_' + id).show();
}

