function hideLivescore()
{
	$('#livescoreTable').slideUp(1000);
	livescoreButton = document.getElementById('livescoreButton');
	livescoreButton.value = "Pokaż wyniki na żywo";
	livescoreButton.onclick = showLivescore;
	/*$.ajax({
		type: 'GET',
		url: 'showHideSession.php'
		data: {'show' : 0}
	});*/
}

function showLivescore()
{
	$('#livescoreTable').slideDown(1000);
	$('#livescoreTable').addClass('liveMatches');
	livescoreButton = document.getElementById('livescoreButton');
	livescoreButton.value = "Ukryj wyniki na żywo";
	livescoreButton.onclick = hideLivescore;
	/*$.ajax({
		type: 'GET',
		url: 'showHideSession.php'
		data: {'show' : 1}
	});*/
}

//TABLE RELOADER

var auto_refresh = setInterval(
	function()
	{
		$('#livescoreTable').load('wyniki_live/index.php');
	}, 60000);
	
// END TABLE RELOADER

var scoreWindow = null;

function showWindow(id)
{	
	scoreWindow = document.getElementById(id);
	scoreWindow.style.visibility = 'visible';
	return true;
}

function hideWindow(id)
{
	scoreWindow.style.visibility = 'hidden';
	return true;
}
