// JavaScript Document
//utf-8;


$(document).ready(function(){
		
	//マウスオーバーで画像を変換 
	$("img[src*='_off'],input[src*='_off']").not('.current_now').hover(
															
		function(){
			var src = $(this).attr("src");
			$(this).attr("src", src.replace("_off","_on"));
		},
		function(){
			var src = $(this).attr("src");
			$(this).attr("src", src.replace("_on","_off"));
		}
	);

});

/*---------------------------------
ボタンのマウスオーバー処理
---------------------------------*/
$(function(){
	
	//ボタンのマウスオーバー処理
	$(".alpha_ov").hover(
	function () {
		$(this).addClass("alpha_hover");
	},
	function () {
		$(this).removeClass("alpha_hover");
	});
	
});


/* 印刷関数 */
function PrintPage(){
	if(document.getElementById || document.layers){
		window.print();	
	}
}


/*外部リンクをブランク表示*/
jQuery(function() {   
  jQuery("a.blank").attr("target","_blank"); 
});



//サイト内検索フォームのエラーチェック
$(function(){
	
	//ボタンのマウスオーバー処理
	$("#cse-search-box").submit(
	function () {
		if($("#keyword").attr("value") == ""){
		
			alert("キーワードを入力して下さい。");
			
			return false;
			
		}else{
			
			return true;
		};
	});
	
});






