$().ready(function()
{
	$("#rotator").mouseenter(function()
	{ 
          $(this).children('.num').stop(true,true).fadeIn('normal');
    }).mouseleave(function()
	{
          $(this).children('.num').stop(true,true).fadeOut('fast');
    });  
});
