﻿$(document).ready(function(){ 
 $("div[class*='eggheadRatingRAT']").hide();
     var hide = false;
     $(".RatingLink").hover(function(){ 
     var id = this.id;
         if (hide) clearTimeout(hide); 
         $('div.eggheadRating' + id).show(); 
     }, function() { 
     var id = this.id;
         hide = setTimeout(function() { 
            $('div.eggheadRating' + id).hide(); 
         }, 1); 
     }); 
});
