
$(document).ready(function()
{
   $('#demo a[title]').qtip({
      position: {
         corner: {
            target: 'topLeft',
	        tooltip: 'bottomRight'
         }
      },
	  show: { effect: { type: 'fade' } },
      style: {
	   	 color: '#FFFFFF',
         background: '#02141e',
         padding: '2px 2px',
		 width: {
            max: 210,
            min: 0
	     },
		 border: {
         width: 1,
         radius: 1,
         color: '#000000'
		},
		tip: true
      }
   });
});


$(document).ready(function()
{
 	$('input[title]') .qtip({
      position: {
         corner: {
            target: 'topRight',
	        tooltip: 'bottomLeft'
         }
      },
	  show: { effect: { type: 'fade' },
	  			when: { event: 'mouseover' } },
      style: {
		 textAlign: 'center',
	   	 color: '#FFFFFF',
         background: '#02141e',
         padding: '2px 2px',
		 width: {
            max: 210,
            min: 0
	     },
		 border: {
         width: 1,
         radius: 1,
         color: '#000000'
		},
		tip: true
      }
   });
});
