var mouseevents = {
         //Navigation
         '#dw area' : function(e){
                 e.onmouseover = function(){
                        show(this.className);
                }
                 e.onmouseout = function(){
                        hide(this.className,1);
                }
        },
         '#nav area' : function(e){
                 e.onmouseover = function(){
                        show(this.className);
                }
                 e.onmouseout = function(){
                        hide(this.className,1);
                }
        },
         '#nav a' : function(e){
                 e.onmouseover = function(){
                        show(this.id);
                }
                 e.onmouseout = function(){
                        hide(this.id,1);
                }
        },
         '.lala' : function(e){
                 e.onmouseover = function(){
                        show('nav9');
                }
                 e.onmouseout = function(){
                        hide('nav9',1);
                }
        },
         '.ksm' : function(e){
                 e.onmouseover = function(){
                        show('nav10');
                }
                 e.onmouseout = function(){
                        hide('nav10',1);
                }
        }
};

Behaviour.register(mouseevents);
