$(document).ready(function() {    
           $('div.mikrobox').hover( 
             function() { 
               $(this).addClass('hover'); 
             }, function() { 
               $(this).removeClass('hover'); 
             } 
           ); 
});  

$(document).ready(function() {    
           $('div.mikrobox2').hover(function() { 
               $(this).addClass('hover'); 
             }, function() { 
               $(this).removeClass('hover'); 
             }); 
});  

$(document).ready(function() {    
           $('span').hover( 
             function() { 
               $(this).addClass('hover'); 
             }, function() { 
               $(this).removeClass('hover'); 
             } 
           ); 
});  
        
$(document).ready(function() {
        $('a').click(function() {
          $('#textbox').toggle(1000);
        });
});

