/*********************************************
 * ファイル名 : posts.js
 * 概要       : クライアント用機能
 * 履歴       : 2007/02 S.Ito
 *********************************************/
function show_menu_brand(){
    $('#brd_list').slideToggle('fast');
}
function show_menu_category(id){
    $('#ctg_list_'+id).slideToggle('fast');
}

function changeLanguage( lang ){
    $.post("./change_language.php", { lang:lang } , function(){ location.reload(); } );
}

function check_cart( fm ) {
    $.get("./check_cart.php", function(rs){ if(rs>0) $('#'+fm).submit(); else alert('No item selected') } );
}