     $(document).ready(function(){
      $('.ciao_title').hover(function(){
            var that = this;
            t = setTimeout(function(){
                      $(that.parentNode.nextSibling).fadeIn('fast');
                      if(that.parentNode.className == 'ciao_title_wrapper'){
                          that.parentNode.className = 'ciao_title_wrapper_down';
                      }                                      
                    },550);         
          },
          function(){
            clearTimeout(t);
          }
        );
            
      $('.ciao_close_button').click(function(){             
          var that = this;               
           $(this.parentNode.parentNode).fadeOut(function(){
               $(that.parentNode.parentNode.parentNode).find('.ciao_title_wrapper_down').removeClass('ciao_title_wrapper_down').addClass('ciao_title_wrapper');
           });                                    
      });
      
          preloadImages('http://www.ciaomedia.com/version2/images/ciao_bar4.gif',320,19);
          preloadImages('http://www.ciaomedia.com/version2/images/tooltip_shadow.gif',300,14);
      
     });

 function preloadImages(img,width,height){
    window.focus();
    var i = new Image(width,height);
    i.src = img;
 }
