jQuery(function(){
								
/***index******************************/

	// regist input
	$("body#index #regist dd.registBtn input")
		.hover(
			function () {
				$(this).attr("src", 'img/index/regist_btn_on.png');
			},
			function () {
				$(this).attr("src", 'img/index/regist_btn.png');
			}
		)
	;
	
	
		$("body.subsize #footer p img")
		.hover(
			function () {
				$(this).attr("src", 'img/subsize/close_btn_on.gif');
			},
			function () {
				$(this).attr("src", 'img/subsize/close_btn.gif');
			}
		)
	;
	
		$("body#contact #contents dd input")
		.hover(
			function () {
				$(this).attr("src", 'img/subsize/contact_btn_on.gif');
			},
			function () {
				$(this).attr("src", 'img/subsize/contact_btn.gif');
			}
		)
	;


});





