// JavaScript Document

        $(function() {
        
                $("#slideshow > div:gt(0)").hide();

                setInterval(function() { 
                  $('#slideshow > div:first')
                    .fadeOut(500)
                    .next()
                    .fadeIn(500)
                    .end()
                    .appendTo('#slideshow');
                },  5000);
                
        });
		$('#s2').cycle({ 
		    fx:     'fade', 
		    speed:  'fast', 
		    timeout: 0, 
		    next:   '#next2', 
		    prev:   '#prev2' 
		});
