/*
 * JS pro webovou cast
 *
 *
 */
$(document).ready(function(){
	$('a[href$="jpg"], a[href$="jpeg"], a[href$="gif"], a[href$="png"], a[href$="JPG"], a[href$="JPEG"], a[href$="GIF"], a[href$="PNG"]').fancybox();
	
	$("#jazyk").change(function(){
		$(this).parents('form').submit();		
	});
	$("div#menu table td").click(function(){
		location.href = $('a', this).attr('href');
	});
	
	
});
