//if javascript is enabled then load the other images and start the slideshow

$(document).ready(function()
{
var oImage1 = new Image();
oImage1.src = "images/CTH1.jpg";
$('#slideshow').append(oImage1);

var oImage2 = new Image();
oImage2.src = "images/CTH3.jpg";
$('#slideshow').append(oImage2);

//var oImage3 = new Image();
//oImage3.src = "images/silverware/longspoons.jpg";
//$('#slideshow').append(oImage3);

$('#slideshow').cycle({ 
    fx:    'fade', 
    speed:  3500 
 });
});



