(function(){
    document.observe("dom:loaded", function(e){
        var currentHoverElement = $("stores-hover-info");
        
        $("icon-home").observe("mouseover", function(e){
            e.stop();
            if (currentHoverElement.identify() != "realty-hover-info") {
                currentHoverElement.dropOut();
                currentHoverElement = $("realty-hover-info");
                $("realty-hover-info").blindDown();
            }
        });
        
        $("icon-restaurant").observe("mouseover", function(e){
            e.stop()
            if (currentHoverElement.identify() != "restaurants-hover-info") {
                currentHoverElement.dropOut();
                currentHoverElement = $("restaurants-hover-info");
                $("restaurants-hover-info").blindDown();
            }
        });
        
        $("icon-stores").observe("mouseover", function(e){
            e.stop();
            if (currentHoverElement.identify() != "stores-hover-info") {
                currentHoverElement.dropOut();
                currentHoverElement = $("stores-hover-info");
                $("stores-hover-info").blindDown();
            }
        });
        
        $("icon-police").observe("mouseover", function(e){
            e.stop();
            if (currentHoverElement.identify() != "police-hover-info") {
                currentHoverElement.dropOut();
                currentHoverElement = $("police-hover-info");
                $("police-hover-info").blindDown();
            }
        });
        
        $("icon-advertising").observe("mouseover", function(e){
            e.stop();
            if (currentHoverElement.identify() != "advertising-hover-info") {
                currentHoverElement.dropOut();
                currentHoverElement = $("advertising-hover-info");
                $("advertising-hover-info").blindDown();
            }
        });
        
        $("icon-education").observe("mouseover", function(e){
            e.stop();
            if (currentHoverElement.identify() != "education-hover-info") {
                currentHoverElement.dropOut();
                currentHoverElement = $("education-hover-info");
                $("education-hover-info").blindDown();
            }
        });
        
        $("icon-tourism").observe("mouseover", function(e){
            e.stop();
            if (currentHoverElement.identify() != "tourism-hover-info") {
                currentHoverElement.dropOut();
                currentHoverElement = $("tourism-hover-info");
                $("tourism-hover-info").blindDown();
            }
        });
        
        $("icon-nightlife").observe("mouseover", function(e){
            e.stop();
            if (currentHoverElement.identify() != "nightlife-hover-info") {
                currentHoverElement.dropOut();
                currentHoverElement = $("nightlife-hover-info");
                $("nightlife-hover-info").blindDown();
            }
        });
        
        $("icon-chat").observe("mouseover", function(e){
            e.stop();
            if (currentHoverElement.identify() != "chat-hover-info") {
                currentHoverElement.dropOut();
                currentHoverElement = $("chat-hover-info");
                $("chat-hover-info").blindDown();
            }
        });
        
        $("icon-traffic").observe("mouseover", function(e){
            e.stop();
            if (currentHoverElement.identify() != "traffic-hover-info") {
                currentHoverElement.dropOut();
                currentHoverElement = $("traffic-hover-info");
                $("traffic-hover-info").blindDown();
            }
        });
    })
})();


