$(document).ready(function(){
    $('a#network').click(function(){
        if ($(this).is(".closed")) {
                $('ul.network li').slideToggle("fast");
            } else {
                $('ul.network li').slideToggle("fast").siblings("ul.network").slideUp();
            }
    });
    $("a[href*='http://']:not([href*='"+location.hostname+"'])").attr("target","_blank");

    $("#programme-box div").hide();

    $("a[rel*='popup']").each(function(i, link) {
        $(this).parent().nextAll("div").attr("id", "faceboxDiv"+i)
        $(this).attr("href", "#faceboxDiv"+i)
    });
    $("a[rel*='popup']").facebox();
    // if($('.map').length > 0) {
    //     $('.map').maphilight();
    // }

    $("ul.participant li:even").addClass("even");
    $("ul.participant li:odd").addClass("odd");

    $("table tr td:first-child").css('border-left', "1px solid #e0e0e0");

    $blinker = $('#right').find('.effect');
    setInterval( function() {
        var isActive = $blinker.hasClass('indent') ? false : true;

        $blinker.toggleClass('indent', isActive);
    }, 5e2);
});

