$(document).ready(function() {
    //
    // Home page - set up the main slideshow
    //
    $("#slideshow ul.slides").cycle({
        //fx: 'scrollLeft',
        //timeout: 8000
        timeout: 6000,
        fx: 'fade',
        pause: 0
    });
    $('#slideshow ul.slides li').click(function (){
       var href = $(this).attr('rel');
       if (href!=null && jQuery.trim(href).length!=0) {
           document.location.href = href;
       }
    }).css('cursor', 'pointer');

});

