/**
 * Common public functions
 * requires jquery
 */

/**
 * Odkazy ven - do noveho okna
 */
$(document).ready(function() {
	$("a.out").click(function() {
		return !window.open($(this).attr("href"));
	});
});