$(document).ready(function() 
{
   $('#sidebarbox [title]').qtip(
   {
      content: {
         text: false
      },
      position: {
      	  corner: {
         	target: 'bottomMiddle',
         	tooltip: 'topMiddle'
      	 	}
   	  },
	  show: {
         delay: 200
      },
      style: {
	  	 width: {
         	max: 550
     	 },
		 color: '#FF7900',
		 border: {
         	width: 3,
         	radius: 5,
         	color: '#272727'
     	 },
         name: 'dark'
      }	  
   });
});
