$(function(){
	/*サイト内検索*/
	/*$("#shArea").val("キーワードを入力")  
       .css("color","#969696");  
    $("#shArea").focus(function(){  
        if(this.value == "キーワードを入力"){  
            $(this).val("").css("color","#333");  
        }  
    });  
   $("#shArea").blur(function(){  
        if(this.value == ""){  
             $(this).val("キーワードを入力")  
                 .css("color","#969696");  
        }  
        if(this.value != "キーワードを入力"){  
            $(this).css("color","#333");  
        }  
    });*/
	/*ONMOUSE画像フェード*/   
	$("body a img,#gMenu li,#ctsRight li a").hover(
		function(){
			$(this).fadeTo(200, 0.5);
		},
		function(){
			$(this).fadeTo(200, 1.0);
		}
	);
});
/*カレント表示*/
function globalNavi_active(id1,id2,id3){
    var target_a1 = "#"+id1+" a";
    $(target_a1).addClass("here");
	var target_a2 = "#"+id2+" a";
    $(target_a2).addClass("here");
	var target_a3 = "#"+id3+" a";
    $(target_a3).addClass("here");
}

