$(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);
    });
});

var Map={
    gmap:null,
    infoWindow: null,
    mapcenter: null,
    markers:[]
};

function centermap(lat, lng) {
    if (Map.gmap) {
        Map.gmap.panTo(new google.maps.LatLng(lat, lng));
    };
    return false;
}


