$(document).ready(function(){
		$("#btn_showhide").hover(function(){
				$(this).css("cursor","pointer");
			},function(){
				$(this).css("cursor","default");
			});
	});
$(function(){
		$("#btn_showhide").click(function(){
				if ($("#searchform1").css("display")!="none") {
					$("#searchform1").hide();
					$(this).children(".foldexpand").attr({src:"images/design/expand.gif"});
					$(this).children(".foldexpand_text").text("検索フォームを表示");
				} else {
					$("#searchform1").show();
					$(this).children(".foldexpand").attr({src:"images/design/fold.gif"});
					$(this).children(".foldexpand_text").text("検索フォームを非表示");
				}
			})
			})


