﻿$(function(){
	/***********************************************
	//tot-menu-bt	-rollOver					   //
	************************************************/
	$(".bt-sumbit01").hover(function(){
		$(this).css( {backgroundPosition: "-159px 0"} );
			},function(){
		$(this).css( {backgroundPosition: "0 0"} );
	});
	/***********************************************
	//pagemove 									   //
	************************************************/
	$(".pagetop > a").click(function(){
		$(this).blur();
		$('html,body').animate({ scrollTop: 0 }, 'slow');
		return false;
	});
	
	
	/***********************************************
	//ロールオーバー 透明度低下				   //
	************************************************/
	
	$(".rollover").hover(function(){
		$(this).css("opacity","0.7");
		},function(){
		$(this).css("opacity","1.0");
	}).click(function(){
		$(this).css("opacity","1.0");
	});

	
	
});
