$(function(){	
	
	//animacja baneru
	setInterval("slideSwitch()", 2000);
	
	//style w drzewie dokumentu
	var $style1 = {
			'height':'22px',
			'border':'1px solid #ccc',
			'font':'12px trebuchet ms'	
	};
	
	
	
	$('.infoBoxHeading').css($style1);
	
	$('.infoBox').css({
		'margin-top':'1px'
	});
	
 });

