function ApplyWhatsNewQtips()
{
   $('.whatsNewItem.hoverItem').each(function()
   {
      $(this).qtip(
      {
         content: {
            text: $(this).children(".popOut").html()
         },
         position: {
            corner: {
               target: 'leftMiddle',
               tooltip: 'rightMiddle'
            }
         },

         style: {
            tip: true,
            
            border: {
               width: 0,
               radius: 1,
               color: '#999999'
            },
            name: 'light',
            padding: '15px',
            width: 555,
            'font-size': '105%',
            color: '#666666'
         }
      })
   });
}

