$(document).ready(function()
{
   $('img.Tips').qtip({
      position: {
         corner: {
            target: 'topRight',
            tooltip: 'bottomLeft'
         }
      },
      style: {
         name: 'dark',
         padding: '7px 13px',
		 border: {
         	width: 4,
         	radius: 6
      		},
         width: {
            max: 210,
            min: 0
         },
         tip: true
      }
   });
   $('img.sbTips').qtip({
      position: {
         corner: {
            target: 'topLeft',
            tooltip: 'bottomRight'
         }
      },
      style: {
         name: 'dark',
         padding: '7px 13px',
		 border: {
         	width: 4,
         	radius: 6
      		},
         width: {
            max: 210,
            min: 0
         },
         tip: true
      }
   });
});
