
$(document).ready(function(){
    $('ul.columnSet li').each(function(){
        $(this).children().slideshow({
            autostart: true,
            delay: Math.floor(Math.random() * (7000 - 3000 + 1)) + 3000
        });
        
    });
    
});


