// JavaScript Document

//jQuery(document).ready(function(){
//	jQuery('#imgNaviContainer img').hover(
//		function(e){
//			jQuery('#imgNaviContainer img').fadeIn('fast',function(){
//		});
//		},
//		function(e){
//			jQuery('#imgNaviContainer img').fadeOut('slow',function(){
//		});
//		});
//});

//$(function(){
//	var setImg = '#imgNaviFamily';
//	var fadeSpeed = 3000;
//	var switchDelay = 5000;
//
//	$(setImg).children('img').css({opacity:'0'});
//	$(setImg + ' img:first').stop().animate({opacity:'1',zIndex:'20'},fadeSpeed);
//
//	setInterval(function(){
//		$(setImg + ' :first-child').animate({opacity:'0'},fadeSpeed).next('img').animate({opacity:'1'},fadeSpeed).end().appendTo(setImg);
//	},switchDelay);
//});


//jQuery(function(){
////	jQuery('#wrapper').hover(function(e){
//		jQuery('#imgNaviFamily img:gt(0)').hide();
//			setInterval(function() {
//				jQuery('#imgNaviFamily :first-child').fadeIn(5000)
//				.next('img').fadeOut(5000)
//				.end().appendTo('#imgNaviFamily');
//			}, 5000);
////	});
//});
jQuery(function(){
		jQuery('#imgNaviFamily img:gt(0)').hide();
			setInterval(function() {
				jQuery('#imgNaviFamily :first-child').fadeOut(4000)
				.next('img').fadeIn(4000)
				.end().appendTo('#imgNaviFamily');
			}, 4000);
//	});
});

//$(function(){
//$('.fadein img:gt(0)').hide();
//setInterval(function() {
//$('.fadein :first-child').fadeOut(5000)
//.next('img').fadeIn(5000)
//.end().appendTo('.fadein');
//}, 5000);
//});
