$(document).ready(function(){
	$('#tekst_tresc').load('strony/kontakt_dane.php');
	
	$('#tekst_menu a').click(function(){
		$('#tekst_tresc').load('strony/'+$(this).attr("id") +'.php');
		return false;
	}); 		
	
	/*
	$('#menu li').mouseover(function(){
		$(this).animate({'backgroundColor','red'}, 300);
		animate({'backgroundColor':'#fb6c6c'},300);
	});
	*/
	
	$('#menu li').mouseover(function(e) {
		e.preventDefault();
		this.animate({'backgroundColor':'red'},300);
	});
}); 