$(document).ready(function() {

    $(".tabulka tbody tr:even").addClass("licha");

    $("a[ href ^= '#' ]").each(function() {
        var href = window.location + $(this).attr("href").replace("/#.*/i","");
        $(this).attr("href",href);
		});

	});
