// JavaScript Document

$(function() {

//トップサイドナビ
	$('#sidebtn1 a img').hover(
		function(){
			$(this).attr("src","img/top/btn/side1_on.gif");
		},
		function () {
	    		$(this).attr('src','img/top/btn/side1.gif');
	  	}
	);
	$('#sidebtn2 a img').hover(
		function(){
			$(this).attr("src","img/top/btn/side2_on.gif");
		},
		function () {
	    		$(this).attr('src','img/top/btn/side2.gif');
	  	}
	);
	$('#sidebtn3 a img').hover(
		function(){
			$(this).attr("src","img/top/btn/side3_on.gif");
		},
		function () {
	    		$(this).attr('src','img/top/btn/side3.gif');
	  	}
	);
	$('#sidebtn4 a img').hover(
		function(){
			$(this).attr("src","img/top/btn/side4_on.gif");
		},
		function () {
	    		$(this).attr('src','img/top/btn/side4.gif');
	  	}
	);

}); 
