var timer;

jQuery(document).ready(function(){

		timer = setInterval("startSlide()",3500);

});


function startSlide(){

         $('#TOP_photo').crossSlide({
            sleep: 4, //in sec
            fade: 1.25   //in sec
         },
         [
            { src: 'images02/top/top_p001.jpg'},
            { src: 'images02/top/top_p002.jpg'},
            { src: 'images02/top/top_p003.jpg'},
            { src: 'images02/top/top_p004.jpg'},
            { src: 'images02/top/top_p005.jpg'},
            { src: 'images02/top/top_p006.jpg'},
            { src: 'images02/top/top_p007.jpg'},
            { src: 'images02/top/top_p008.jpg'},
            { src: 'images02/top/top_p009.jpg'},
            { src: 'images02/top/top_p010.jpg'},
            { src: 'images02/top/top_p011.jpg'},
            { src: 'images02/top/top_p012.jpg'}
         ]);
         
         clearInterval(timer);
         
         
         
}
