
jQuery(window).load(function () {

    if ($('.image-slideshow-left img').length <= 1) {
        $('.image-slideshow-left img').css('display', 'block');
    }
    else {
        $('.image-slideshow-left').cycle({
            delay: 1500,
            timeout: 3000
        });
    }

    if ($('.image-slideshow-right img').length <= 1) {
        $('.image-slideshow-right img').css('display', 'block');
    }
    else {
        $('.image-slideshow-right').cycle({
            timeout: 3000
        });
    }
});
