
	   $(document).ready(
				function(){
					$('.fade').innerfade({
						speed: 600,
						timeout: 5000,
						type: 'random_start',
						containerheight: '32px'
					});

			});



//オンマウスオーバー

$(function() {

	$("#shebox01").hide();
	$("#shebox02").hide();
	$("#shebox03").hide();
	$("#shebox04").hide();
	$("#shebox05").hide();
	$("#shebox06").hide();

	$(".hov1").hover(function(){
		$("#shebox01").show();
	}, function(){
		$("#shebox01").hide();
	});



	$(".hov2").hover(
	function(){
		$("#shebox02").show();
	},
	function(){
		$("#shebox02").hide();
	}
	);


	$(".hov3").hover(
	function(){
		$("#shebox03").show();
	},
	function(){
		$("#shebox03").hide();
	}
	);


	$(".hov4").hover(
	function(){
		$("#shebox04").show();
	},
	function(){
		$("#shebox04").hide();
	}
	);


	$(".hov5").hover(
	function(){
		$("#shebox05").show();
	},
	function(){
		$("#shebox05").hide();
	}
	);


	$(".hov6").hover(
	function(){
		$("#shebox06").show();
	},
	function(){
		$("#shebox06").hide();
	}
	);

});




