//Rollover with jQuery
// ---------------------------------------------------------------------------
function initRollOverImages() {
	var image_cache = new Object();
		$("img.rollover, input.rollover").each(function(i) {
		var imgsrc = this.src;
		var dot = this.src.lastIndexOf('.');
		var imgsrc_on = this.src.substr(0, dot) + '_on' + this.src.substr(dot, 4);
		image_cache[this.src] = new Image();
		image_cache[this.src].src = imgsrc_on;
		$(this).hover(
		function() { this.src = imgsrc_on; }, // onmouseover
		function() { this.src = imgsrc; }); // onmouseout
	});
}

$(document).ready(initRollOverImages);



// Google Search with jQuery
// ---------------------------------------------------------------------------
	$(function(){
		if($("input#query").val()!=""){
			 $(this).addClass("nohit");
		}else{
			 $($("input#query")).addClass("hit");
		}
		$("input#query").focus(function(){
				/* フォーカスが当たった時、何も入力されていなかったら背景画像を消す */
				if($(this).val()=="") $(this).removeClass("hit").addClass("nohit");
		}).blur(function(){
			 /* フォーカスが外れた時、何も入力されていなかったら背景画像を表示 */
				if($(this).val()=="") $(this).removeClass("nohit").addClass("hit");
		});
	});



// pull down menu link
// ---------------------------------------------------------------------------
function OpenLink(){
	var n = document.selectlink.link.selectedIndex;
	location.href = document.selectlink.link.options[n].value;
}


