jQuery(function($) {
	Timer();
	
	$("#Contents").mouseover(function(){
		clearInterval(myTimer);
	});
	$("#Contents").mouseout(function(){
		Timer();
	});
	
	function Timer() {
		myTimer = setInterval(slideShow, 5000);
	}
	
	function slideShow () {
		$("#SlidePhoto p:last").fadeOut("slow",function(){
			$(this).clone().prependTo("#SlidePhoto").css("display","block");
			$(this).remove();
		})
	}
	
});

/*

jQuery(function($) {
	Timer();
	
	$("#Contents").mouseover(function(){
		clearInterval(myTimer);
	});
	$("#Contents").mouseout(function(){
		Timer();
	});
	
	function Timer() {
		myTimer = setInterval(slideShow, 5000);
	}
	
	var slide = false;
	function slideShow() {
		if (slide) {
			$("#SlidePhoto").fadeOut(2000);
			slide = false;
		} else {
			$("#SlidePhoto").fadeIn(2000);
			slide = true;
		}
	};
});

*/
