﻿$(document).ready(function(){  
           $("div.desc3:visible").hide("slow"); 
           $("div.desc2:visible").hide("slow");
        
        $("div.blu").hover(function() {        
           $("div.desc3:visible").hide("slow");
           $("div.desc2:visible").hide("slow"); 
           $("div.desc1:hidden").show("slow");
        }, function(){                             
        });
        
        $("div.verde").hover(function() {        
           $("div.desc1:visible").hide("slow");
           $("div.desc3:visible").hide("slow"); 
           $("div.desc2:hidden").show("slow");
        }, function(){    
        });
        
        $("div.giallo").hover(function() {          
           $("div.desc1:visible").hide("slow"); 
           $("div.desc2:visible").hide("slow"); 
           $("div.desc3:hidden").show("slow");           
        }, function(){                            
        });
        
    });
