
$(function() {
	
	$('.hpnTab').tabs();
	
	
	function updateLiveResultList() {
		$.postJSON("ajax/AjaxRouter.php", {action: "103"}, function(data) {
			var html = "<ul>";
			
			if (data.length > 0) {
				$.each(data, function(entryIndex, entry) {
					html += "<li class='ui-corner-all'><a href='index.php?Site=ShowCompetitionList&eventId=" + entry.eventId + "' title='Åpne LIVE resultatvisning'>" + entry.organisationShortName + " - " + entry.activity + "(" + entry.eventLevelShortName + ") : " + entry.dateString + "</li>";
				});
			}
			else {
				html += "<li class='ui-corner-all'>Ingen pågående konkurranser for øyeblikket</li>";
			
				$('#liveResultTab ul').css("color", "red");
			}
			
			html += "</ul>";
			$('#liveResultContainer').html(html);
		});
	}
	
	
	updateLiveResultList();
	
});

