﻿function LoadSlideshowItems() {
    LoadSlideShow();
}

$(function() {
    $('#s1').cycle({
        fx: 'fade',
        speed: '300',
        timeout: 0,
        next: '#next2',
        prev: '#prev2'
    });
});

function LoadSlideShow() {
    /* An initial static item is loaded first while the others are hidden otherwise when the page 
    loads you can see the full list of news items.*/
    //$('#initialImagePromo').hide();
    //$('#imagePromo').show(); // Can't use this otherwise it sets all the promo images to display.
    document.getElementById('slideshowImage').style.display = 'block';
}
