$(function() {
	$('#mleft td').hover(
			function() {
				$(this).addClass('hover');
				$(this).children("a").addClass('hover');
			}, 
			function() { 
				$(this).removeClass('hover'); 
				$(this).children("a").removeClass('hover')
			}
	);

	$('#menu a').hover(
			function() {$(this).addClass('hover');}, 
			function() {$(this).removeClass('hover');}
	);

	$('#mleft td').click(
			function() { 
				var link = $(this).children("a").attr("href");
				document.location.href=link;
			}
	);

	$('#txt tr:odd').addClass('odd');
	$('#txt tr:even').addClass('even');
	$('#txt tr:first').addClass('first');
	
	// przycisk wroc
	$('#btnback').click(function(){
		window.history.back();
	});
	$('#btntop').click(function(){
		document.location.href="#gora";
	});
});
