$(function () {



    // a.blank jako target blank
	$("a.blank").each(function () {
		$(this).click(function () {
			window.open(this.href);
			return false;
		});
	});

    // Tabulky
	$("table tr:odd").addClass("odd");
	$("table tr:even").addClass("even");

});


