function displayEventList() {
	$("#map").hide();
	$("#events").show();
}

function displayEventMap() {
	$("#events").hide();
	$("#map").show();
	initializeManual();
}

function openYoutubePlaylist(event_id, yt_playlist_id) {
	var test = $("div#yp-playlist-"+event_id).html();
	$("div.placeholder-youtube-playlist").html('');
	if (test == '') $("div#yp-playlist-"+event_id).html('<object width=\'640\' height=\'390\'><param name=\'movie\' value=\'http://www.youtube.com/p/90855FBCE6DF13E5?hl=cs_CZ&fs=1\'></param><param name=\'allowFullScreen\' value=\'true\'></param><param name=\'allowscriptaccess\' value=\'always\'></param><embed src=\'http://www.youtube.com/p/'+yt_playlist_id+'?hl=cs_CZ&fs=1\' type=\'application/x-shockwave-flash\' width=\'640\' height=\'390\' allowscriptaccess=\'always\' allowfullscreen=\'true\'></embed></object>');
}


