$(document).ready(function() {
	/*-----  ボタンリスト  -----*/	
	$(".ro-table .btn a").parent().hover(function(){
		$(this).css("background-position","right top"); 
	},function(){
		$(this).css("background-position","left top"); 
	});
	/*-----  汎用タブ -----*/	
	$("#tab-general .tab").hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default"); 
	});
	$("#tab-general .tab").next().hide();
	$(".cur").next().show();
	$("#tab-general .tab").click(function(){
		$(".cur").next().hide();
		$(".cur").removeClass("cur");
		$(this).addClass("cur");
		$(this).next().fadeIn("fast");
	});
});
