jQuery(document).ready(function()
{
   jQuery('ul.mms li a[title]').qtip({
      position: {
         corner: {
            target: 'topRight',
            tooltip: 'bottomLeft'
         }
      },
      style: { 
      width: 230,
      padding: 5,
      background: '#fff',
      color: 'black',
      textAlign: 'center',
      border: {
         width: 6,
		 radius: 8,
         color: '#87A3BB'
      },
      tip: 'bottomLeft',
      name: 'dark' // Inherit the rest of the attributes from the preset dark style
   }

   });
});
