/*外部リンクをブランク表示*/
$(function() {   
  $(".window a").attr("target","_blank");  
});

$(function() {   
  $("a.window").attr("target","_blank");  
});



/*--------------------

FAQアコーディオンスクリプト

--------------------*/
$(function () {
	
	//初期化 読み込み時は非表示
	$(".faq_area dd").css({"display":"none"});		
	
	//マウスオーバー時　カーソール表示
	$(".faq_area dt").mouseover(function () {
		$(this).css({"cursor":"pointer"});	
		this.style.backgroundColor = "#F5F5F5";
	});
	
	
	$(".faq_area dt").mouseout(function () {
		this.style.backgroundColor = "white";
	});


	//dtクリック時次のdd表示
	$(".faq_area dt").click(function () {
		//$("dd:not(:first)").hide();
		$(this).next().slideToggle(10);				 
	});
	
});


/*---------------------------------

インプットマウスオーバー

---------------------------------*/
$(function(){
	$(".btn_hv").hover(
	function () {
		imgSrc = $(this).attr("src");
		imgSrc = imgSrc.replace("_off.", "_on.");
		$(this).attr("src",imgSrc);
	}, 
	function () {
		imgSrc = imgSrc.replace("_on.", "_off.");
		$(this).attr("src",imgSrc);
	});
});


