// JavaScript Document

jQuery(function() {
    var $ss = jQuery('#slideshow1');
    
    // add slides to slideshow (images 2-3)
    for (var i = 2; i < 6; i++)
        $ss.append('<img src="photos/slideshow'+i+'.jpg" height="196" width="794" alt="Royal Coast Walks" />');

    // start the slideshow
    $ss.cycle({ 
    fx:    'fade', 
    speed:  5000,
	random: 1
	
 });
});