$(function(){
	$("ul.panel li:not("+$("ul.tab li a.selected").attr("href")+")").hide();
	$("ul.tab li a").click(function(){
		$("ul.tab li a").removeClass("selected");
		$(this).addClass("selected");
		$("ul.panel li").hide();
		$($(this).attr("href")).show();
		return false;
	});
});
			function setKeywordsForOPAC(){
	document.searchFormOPAC.title.value = "";
	document.searchFormOPAC.auth.value = "";
	document.searchFormOPAC.pub.value = "";
	document.searchFormOPAC.isbn.value = "";
	document.searchFormOPAC.sh.value = "";

	switch(document.searchFormOPAC.field0.options[document.searchFormOPAC.field0.selectedIndex].value){
		case "title":
			document.searchFormOPAC.title.value = document.searchFormOPAC.keywords.value;
			break;
		case "auth":
			document.searchFormOPAC.auth.value = document.searchFormOPAC.keywords.value;
			break;
		case "pub":
			document.searchFormOPAC.pub.value = document.searchFormOPAC.keywords.value;
			break;
		case "isbn":
			document.searchFormOPAC.isbn.value = document.searchFormOPAC.keywords.value;
			break;
		case "sh":
			document.searchFormOPAC.sh.value = document.searchFormOPAC.keywords.value;
			break;
	}
}
function setKeywordsForWebcat(){
	document.searchFormWebcat.txt_title.value = "";
	document.searchFormWebcat.txt_author.value = "";
	document.searchFormWebcat.txt_publisher.value = "";
	document.searchFormWebcat.txt_isbn.value = "";
	document.searchFormWebcat.txt_freeWord.value = "";

	switch(document.searchFormWebcat.field0.options[document.searchFormWebcat.field0.selectedIndex].value){
		case "txt_title":
			document.searchFormWebcat.txt_title.value = document.searchFormWebcat.keywords.value;
			break;
		case "txt_author":
			document.searchFormWebcat.txt_author.value = document.searchFormWebcat.keywords.value;
			break;
		case "txt_publisher":
			document.searchFormWebcat.txt_publisher.value = document.searchFormWebcat.keywords.value;
			break;
		case "txt_isbn":
			document.searchFormWebcat.txt_isbn.value = document.searchFormWebcat.keywords.value;
			break;
		case "txt_freeWord":
			document.searchFormWebcat.txt_freeWord.value = document.searchFormWebcat.keywords.value;
			break;
	}
}

function btnGoogleScholarClick(){
	var URL = "http://scholar.google.co.jp/scholar?q=" + encodeURI(document.googleScholarForm.googleScholarKeywords.value);
	window.open(URL, "_blank");
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

//CiNii検索
$(function(){
	$('form#ciniiSearch').submit(function(){
	var i=$('#ciniiSearch select').val();//セレクト要素のvalueを取得
	var q=$('#ciniiSearch :text').val();//テキストボックスに入力されたテキストを取得
	var a=$('input[name=select_area]:checked').val();
	$('[name='+i+']').attr("value",q);//テキストボックスに入力されたテキストをinput要素の値として追加。
	$('[name='+'area'+']').attr("value",a);//検索対象を沖縄県内の大学図書館に変更。
	});
});
//データベースリスト選択
$(function(){
	$('select#dblist').change(function(){
		var db=$(this).val();
		window.open(db);
	});
});

