		$(function(){
			$("#sidenavi").fadeIn(2000);
			$("#address").fadeIn(4000);

			$("#sn1 img").hover(
					function(){
					$(this).attr("src","icon/home2.gif");
					},
					function(){
					$(this).attr("src","icon/home.gif");
					}
			);

			$("#sn2 img").hover(
					function(){
					$(this).attr("src","icon/onsen2.gif");
					},
					function(){
					$(this).attr("src","icon/onsen.gif");
					}
			);

			$("#sn3 img").hover(
					function(){
					$(this).attr("src","icon/map2.gif");
					},
					function(){
					$(this).attr("src","icon/map.gif");
					}
			);

			$("#sn4 img").hover(
					function(){
					$(this).attr("src","icon/shokuji2.gif");
					},
					function(){
					$(this).attr("src","icon/shokuji.gif");
					}
			);

			$("#sn5 img").hover(
					function(){
					$(this).attr("src","icon/another2.gif");
					},
					function(){
					$(this).attr("src","icon/another.gif");
					}
			);

			$("#sn6 img").hover(
					function(){
					$(this).attr("src","icon/nouen2.gif");
					},
					function(){
					$(this).attr("src","icon/nouen.gif");
					}
			);

			$("#sn7 img").hover(
					function(){
					$(this).attr("src","icon/link2.gif");
					},
					function(){
					$(this).attr("src","icon/link.gif");
					}
			);
		});
