jQuery(document).ready(function($){
$("li.chon").click(function () {
      $(".tabmenu > li").removeClass("liston");
			$(this).addClass("liston");
    });
});



// JUS-TIS検索URL作成
	var base_url = "http://www.justis.as-1.co.jp/jus-tis/web/DirectSearch.aspx?sid=";
	var site_id = "science";
	var catalog_id = "GJ";

// 大分類検索
	function dSerch(data){
	junp_url = base_url + site_id + '&srchtype=publish_class&catacd=' + catalog_id + '&lcode=' + encodeURIComponent(data);
	window.open(junp_url, 'justis', '');
};
// キーワード検索
	function dSerch_k(){
	var key_type = $("#jkeywords input[name='radio1']:checked").val();
	var key_DATA = $("#textfield1").val();
	var key_detl = $("input:checked").length;

	if (key_DATA == ""){
		window.alert("キーワードを指定してください");
	}else{
	  switch(key_type){
			case "all":
				if( key_detl > 1 ){key_detl='d';}else{key_detl='';};
				junp_url = base_url + site_id + '&srchtype=' + key_detl + 'keyword&sword=' + encodeURIComponent(key_DATA);
	    break;
     	case "prod":
				junp_url = base_url + site_id + '&srchtype=product_name&shname=' + encodeURIComponent(key_DATA);
	    break;
			case "no":
			junp_url = base_url + site_id + '&srchtype=model_no&katano=' + encodeURIComponent(key_DATA);
	    break;
		};
//		confirm(junp_url);
		window.open(junp_url, 'justis', '');
	};
};

//カタログ検索
	function dSerch_c(){
	var cata_name = $("#select1").val();
	var cata_DATA = $("#textfield2").val();

	if (cata_name == "" || cata_DATA == "" ){
		window.alert("カタログを選び、ページを入力してください");
	}else{
				junp_url = base_url + site_id + '&srchtype=catalog&catacd=' + cata_name + '&catapg=' + encodeURIComponent(cata_DATA);
//		confirm(junp_url);
		window.open(junp_url, 'justis', '');
	};
};

//コード検索
	function dSerch_code(){
	var code_DATA = $("#textfield3").val();

	if (code_DATA == "" ){
		window.alert("商品コードまたは注文コードを入力してください");
	}else{
		junp_url = base_url + site_id + '&srchtype=top_no&shcode=' + encodeURIComponent(code_DATA);
//		confirm(junp_url);
		window.open(junp_url, 'justis', '');
	};
};

	function resaleAlert() {
		window.alert("「中古リセールサイトのご紹介」は、ただいま準備中です。");
	};

