$(function(){
	$("body a").each(function(){
			var url = $(this).attr("href");
			$(this).bind("click", function(){
				if(window.opener.location.href.indexOf(url) == -1){
					window.opener.location.href = url;
				}
				window.close();
				return false;
			});
	});
	// close window link
	//$("#closewindow").html("<a href=\"#\" onclick=\"window.close(); return false;\">Zavřít okno</a>");
});
