Tim: CSS bei bestimmter aktion deaktivieren

Beitrag lesen

Hallo
Ich habe bis jetzt diesen css script:

  
.menu a:hover  
    {  
    background-color: #00CCFF;  
    }  
  
div.Inhalt  
    {  
    position:fixed;  
    top: 150px;  
    bottom: 0px;  
    left: 0px;  
    right: 0px;  
    overflow:auto;  
    }  
  
div.Inhalt2  
    {  
    position:fixed;  
    top: 200px;  
    bottom: 0px;  
    left: 0px;  
    right: 0px;  
    overflow:auto;  
    }  

Standartmäßig soll "div.Inhalt" aktiv sein und "div.Inhalt2" deaktiviert.
Wenn man aber ".menu a:hover" 'ausführt' soll "div.Inhalt2" aktiviert werden und "div.Inhalt" deaktiviert.

Könnt ihr mir da weiterhelfen?
Danke im Vorraus.