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