


$(document).ready(function() {


    var $ss = $('#s1'); 
         
    // add slides to slideshow (images 0-8) 
    for (var i = 0; i < 9; i++) 
        $ss.append('<img id="schmuckbild" src="../i/s/t'+i+'.jpg" width="500" height="278" />'); 
 
    // start the slideshow 
    $ss.cycle({ 
    fx:    'fade',
    speed:  2500,
    timeout:  50,
    random:  1
});
 });



