$(document).ready(function(){

	$(".gallery a[rel=gal]").fancybox();	
	
	$("#frmsearchForm-search").focus(function() {
		if ($(this).attr("value") == "Hledaný výraz") {
			$(this).attr("value","");
		};
	});

	$("#frmsearchForm-search").blur(function() {
		if($(this).attr("value") == "") {
			$(this).attr("value","Hledaný výraz");
		};
	});
	
	$('.news-item').click(function(){
		window.location.href = $(".link",this).attr('href');
	});
	
	$('#header ul ul').hide();
	$('#header ul li').hover(
		function(){
		    $(this).find('ul').show()
		    $(this).find('a').addClass('linked');
		},
		function(){
			$(this).find('a').removeClass('linked');
			$(this).find('ul').hide()
		}
	);
	
});
