$(document).ready(function(){

	$("#search").autocomplete("/res/searchSuggest.php", {
		width: 340,
		minChars: 2,
		delay: 200,
		matchSubset: false,
		selectFirst: false
	});
    
	$("#search").result(function(event, data, formatted) {
		// $("#search").attr("disabled", "disabled");        
		document.location.href = data[1];
	});

	$(".lightbox").lightbox();
});

// nejoblibenejsi
$(document).ready(function() {

    $("#nahledy-nej-table tr img:first").show();
    $("#nahledy-nej-table tr:first A").css('color','#000');

	$("#nahledy-nej-table tr").hover(
        function () {
        $("#nahledy-nej-table tr A").css('color','#666');
        $(this).find("A").css('color','#000');
        $("#nahledy-nej-table tr img").hide();
        $(this).find("img").show();
        },function(){

	});
	
// inicializace hover menu, apod..
    $('.zobraz').hover(function() {
        if (obj) {
        $('.zobraz').removeClass("hover");
            obj.find('.zobraz-to').hide();
            obj = null;
        } //if
        $(this).addClass('hover');
        $(this).find('.zobraz-to').show();
    }, function() {
        obj = $(this);
        setTimeout("checkHover()", 300);
    });

	
	$(function() {
		var zIndexNumber = 6000;
		$('.head-visited').each(function() {
			$(this).css('zIndex', zIndexNumber);
			zIndexNumber -= 10;
		});
	}); // oprava zkurv. IE7


});// document ready
