function applyShadow() {
	var pos = document.getElementById('header');
	var span = document.createElement('span');
	span.appendChild(document.createTextNode(pos.firstChild.nodeValue));
	pos.appendChild(span);
}

$(function() {

	applyShadow();
	
	$('#ebiznes_click').click(function() {
		$(this).hide();
		$('#ebiznes_more').slideDown();
	});
	
	$('#imaginecup_click').click(function() {
		$(this).hide();
		$('#imaginecup_more').slideDown();
	});
	
	$('#citihandlowy_click').click(function() {
		$(this).hide();
		$('#citihandlowy_more').slideDown();
	});

});