function handleJquery(){
    $("div#slider1").codaSlider();

    /*********************************************************
       Slideshow 
    *********************************************************/
    var slideshowSpeed = 800;
    var slideshowTimeout = 4000;    
    
    $('#slideshow').cycle({ 
        fx:      'fade', 
        speed:    slideshowSpeed, 
        timeout:  8000,
        continuous: 0, // set this to 0 so timeout will work
        slideExpr: 'dl',
        cleartype: '1',
        next: '.slideshow-next',
        prev: '.slideshow-prev',
        pager: '#slideshowpager',
        pagerAnchorBuilder: function(idx, slide) { 
            // return selector string for existing anchor 
            return '#slideshowpager li:eq(' + idx + ') a'; 
        }
    });
    
};
