// This next section sets up the fading images for the Sponsors section on the sidebar. 
// SPEED: In milliseconds - how long the transition should take.
// TYPE: Type of slideshow: 'sequence', 'random' or 'random_start'
// CONTAINERHEIGHT: The height of the div that is calling the innerfade method.


$(function() {
    $('ul#featured728x90').innerfade({
        speed: 1000,
        timeout: 5000,
        type: 'random',
        containerheight: '120px'
    });

});

$(function() {
    $('ol#featured468x60').innerfade({
        speed: 1000,
        timeout: 15000,
        type: 'random',
        containerheight: '60px'
    });

});