jQuery(function($){
  $("#gblink").click(function(){
    $.cookie('jQuery_client_language',null,{path:"/"}); 
    location.href=location.href;
  });
  $("#big5link").click(function(){
    $.cookie('jQuery_client_language',"big5",{path:"/"}); 
    jQuery("body").gb2big5();
	location.href=location.href;
  });
  var $language = $.cookie('jQuery_client_language'); 
  if($language && $language=="big5"){
    $("body").gb2big5();
    document.title =jtf(document.title);
  }
});
