function imgLoad() {
   img1 = new Image();
   img1.src = "images/slide/01.png";

   img2 = new Image();
   img2.src = "images/slide/02.png";
   
   img3 = new Image();
   img3.src = "images/slide/03.png";
   
   img4 = new Image();
   img4.src = "images/slide/04.png";
   
   img5 = new Image();
   img5.src = "images/slide/05.png";
   
   img6 = new Image();
   img6.src = "images/slide/06.png";

   img7 = new Image();
   img7.src = "images/slide/07.png";

   img8 = new Image();
   img8.src = "images/slide/08.png";

   img9 = new Image();
   img9.src = "images/slide/09.png";

   img10 = new Image();
   img10.src = "images/slide/10.png";
}

var isMSIE = /*@cc_on!@*/false; 
if (isMSIE) { //IEの処理
} else { //IE以外の処理

$(document).ready(function(){
	$("#gallery").css({opacity: '0'}, 0);
	
	setTimeout(function() {
        $('#loading').fadeOut("slow", 
			function(){
				$("#gallery").animate({opacity: '100'}, 15000);//サイトのフェード処理の速度
			});
	}, 1000); //Loadingアイコンのフェード処理の速度
	});
}

$(function(){
		// Option set as a global variable
		$.fn.loopedSlider.defaults.addPagination = false;
		
		$('#loopedSlider').loopedSlider({
			autoStart: 5000,
			restart: 2500,
			hoverPause: false
		});
});


$(document).ready(function(){
	$("#slideNav a:first-child").addClass("active");

		$("#slideNav a:last-child").click(function(){
			$("#slideArea ul").animate({left: "-896px"}, 700);
			$("#slideNav a:first-child").removeClass("active");
			$("#slideNav a:last-child").addClass("active");
	});
		$("#slideNav a:first-child").click(function(){
			$("#slideArea ul").animate({left: "0px"}, 700);
			$("#slideNav a:first-child").addClass("active");
			$("#slideNav a:last-child").removeClass("active");
	});
});

