// jQuery

$(function(){
/////////////////////////////////////////////////////////////////////////////////////////////

var t = setTimeout(
 function(){
  $('#fadeout-text').fadeOut(3000);
  clearTimeout(t);
 }, 2000);


///左ナビ　プロフィール
$('#side-nav ul li.ride-go01 a').hover(function(){
		$('#side-nav').addClass('ride-go01');
},function(){
	var t = setTimeout(
 	function(){
  	$('#side-nav').removeClass('ride-go01');
  	clearTimeout(t);
	 }, 1);
});

$('#side-nav ul li.ride-go02 a').hover(function(){
		$('#side-nav').addClass('ride-go02');
},function(){
	var t = setTimeout(
 	function(){
  	$('#side-nav').removeClass('ride-go02');
  	clearTimeout(t);
	 }, 1);
});

$('#side-nav ul li.ride-go03 a').hover(function(){
		$('#side-nav').addClass('ride-go03');
},function(){
	var t = setTimeout(
 	function(){
  	$('#side-nav').removeClass('ride-go03');
  	clearTimeout(t);
	 }, 1);
});

$('#side-nav ul li.ride-go04 a').hover(function(){
		$('#side-nav').addClass('ride-go04');
},function(){
	var t = setTimeout(
 	function(){
  	$('#side-nav').removeClass('ride-go04');
  	clearTimeout(t);
	 }, 1);
});

$('#side-nav ul li.ride-go05 a').hover(function(){
		$('#side-nav').addClass('ride-go05');
},function(){
	var t = setTimeout(
 	function(){
  	$('#side-nav').removeClass('ride-go05');
  	clearTimeout(t);
	 }, 1);
});

/////////////////////////////////////////////////////////////////////////////////////////////
});	
