$(function(){
    var delay = 5000;
    
    var url = "http://ilovenycamping.com/events/get_events.php?callback=?";
    
    $.getJSON(url, function(data){
        $('#events').html(data.html);
        
        $('.event:first').show();
        
        if($('.event').size() > 1){
            setTimeout(nextEvent, delay);
        }
    });
    
    function nextEvent(){
        var cur = $('.event:visible:first');
        var next = cur.next();
        if(next.size() == 0) next = $('.event:first');
        
        cur.fadeOut(function(){
            next.fadeIn(function(){
                setTimeout(nextEvent, delay);    
            });    
        });
    }
});
