jQuery(function(){
	
	// 携帯URL送信ボタンのsubmit
	$("dl#mobile dd#submitBtn input")
		.hover(
			function () {
				$(this).attr("src", "./img/submitBtn_on.gif");
			},
			function () {
				$(this).attr("src", "./img/submitBtn.gif");
			}
		)
	;
	
	// 地図Btnマウスオーバー制御							
	$("#map ul li a")
		.css("opacity","0");
	$("#map ul li a")
		.hover(
			function () {
				$(this).stop().animate({opacity: 1}, 'fast');
			},
			function () {
				$(this).stop().animate({opacity: 0}, 'fast');
			}
		)
	;
		
});