function showLabel(label)
{
	show = label;
	$('topLinkLabel').innerHTML = show;
}
function showFullDesc(section,el,kind)
{
	link_container = $(section);
	if(kind == 'r')
	{
		$(el).style.display = 'inline';
		link_container.innerHTML = '<a class="RedLink" href="javascript:showFullDesc(\''+section+'\',\''+el+'\',\'z\')" title="zwiń opis">zwiń opis...</a>';
	}
	else
	{
		$(el).style.display = 'none';
		link_container.innerHTML = '<a class="RedLink" href="javascript:showFullDesc(\''+section+'\',\''+el+'\',\'r\')" title="rozwiń opis">rozwiń opis...</a>';
	}
	
}
Event.observe(
	window,
	'load',
	function() {
		Event.observe( $('labelSG'), 'mouseover', function(event){ showLabel('strona główna') }, false );
		Event.observe( $('labelK'), 'mouseover', function(event){ showLabel('kontakt') }, false );
		Event.observe( $('labelSG'), 'mouseout', function(event){ showLabel('') }, false );
		Event.observe( $('labelK'), 'mouseout', function(event){ showLabel('') }, false );
	}
);