$(document).ready(function(){  
      
    var current_panel = 1;  
      
    var animation_duration = 600;//スライド時の動きの速さ  
      
    $.timer(6000, function (timer) {   
        switch(current_panel){  
            case 1:  
                $("#slideshow").stop().animate({left: "-900px", top: "0px"}, {easing: 'easeInOutExpo', duration: animation_duration});
                current_panel = 2;  
            break;  
            case 2:  
                $("#slideshow").stop().animate({left: "-1800px", top: "0px"}, {easing: 'easeInOutExpo', duration: animation_duration});
                current_panel = 3;  
            break;  
            case 3: 
                $("#slideshow").stop().animate({left: "0px", top: "0px"}, {easing: 'easeInOutExpo', duration: animation_duration});  
                current_panel = 1;  
            break;    
            timer.reset(12000);  
        }  
    });  
      
});
