$(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();
	}
	
	$('.participant').makeacolumnlists({cols: 2, colWidth: '248', equalHeight: 'ul', startN: 0});
	$("table tr td:first-child").css('border-left', "1px solid #e0e0e0");
});