$(document).ready(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);
    });
});

