// JavaScript Document
(function($){
 $(function() {
 
  $('span.jQtooltip').each(function() {
     var title = $(this).attr('title');
     if (title && title != '') {
       $(this).attr('title', '').append('<div>' + title + '</div>');
       var width = $(this).find('div').width();
       var height = $(this).find('div').height();
       $(this).hover(
         function() {
           $(this).find('div')
             .clearQueue()
             .animate({width: width + 0, height: height + 0}, 200).show(200)
             .animate({width: width, height: height}, 200);
         },
         function() {
           $(this).find('div')
             .animate({width: width + 0, height: height + 0}, 150)
             .animate({width: 'hide', height: 'hide'}, 150);
         }
       )
     }
   })
 
})
 })(jQuery)
