$(function() {
	$('#s1 img:first').fadeIn(1000, function() {
        $('#s1').cycle({
        fx:     'scrollLeft',
        speed:   200,
        timeout: 2000,
        pause: 1
                
    });
    });
    
    $('#s2 img:first').fadeIn(1000, function() {
        $('#s2').cycle({
        fx:     'scrollLeft',
        speed:   300,
        timeout: 2000,
        pause: 1  
    });
    });

    $('#s3 img:first').fadeIn(1000, function() {
        $('#s3').cycle({
        fx:     'scrollLeft',
        speed:   400,
        timeout: 2000,
        pause: 1
        
    });
    });

});

