var events = [
        ['tui-event-hangar2.jpg', 'Spectaculair lightshow at the TUI event in an airport-hangar at Rotterdam Airport'],
        ['reisgala-4.jpg', 'More than 3000 travel agents enjoying the biggest party in the Dutch Travel Trade!'],
        ['reisgala-5.jpg', 'The Three Baritons impressed the audience during their performance at the yearly Travel Gala diner'],
    ];

var end_of_cycle = events.length - 1;
var key = 0;
function showEvent() {
    $('#fotoscroller img').attr('src', '/img/events/' + events[key][0]);
    $('#fotoscroller p').html(events[key][1]);
    key = (key == end_of_cycle ? 0 : key + 1);
    setTimeout("showEvent()", 2333);
}

$(function() {
    // events : slideshow
    showEvent();
});