$(document).ready(function() {
    var hide = false;
        $(".map-location").hover(function(){
            if (hide) clearTimeout(hide);
            $('.map-location-info').fadeOut("fast");
            $(this).find('.map-location-info').fadeIn("fast");
            $(this).css("z-index", "1000");
        }, function() {
            hide = setTimeout(function() {$(".map-location-info").hide();}, 0);
            $(this).css("z-index", "1");
        });
        $(this).find('.map-location-info').hover(function(){
            if (hide) clearTimeout(hide);
        }, function() {
            hide = setTimeout(function() {$(this).find('.map-location-info').fadeOut("slow");}, 250);
        });
    });

$(document).ready(function() {
	$('#route-button').click(function(){
		$('#route-overlay').toggle("slow");
	});
});

    
/*
$(document).ready(function() {
    var hide = false;
        $(".map-location").hover(function(){
            if (hide) clearTimeout(hide);
            $(this).find('.map-location-info').fadeIn();
        }, function() {
            hide = setTimeout(function() {$(".map-location-info").fadeOut("slow");}, 250);
        });
        $(this).find('.map-location-info').hover(function(){
            if (hide) clearTimeout(hide);
        }, function() {
            hide = setTimeout(function() {$(this).find('.map-location-info').fadeOut("slow");}, 250);
        });
    });
    
    */
