﻿$(document).ready(function()
{	
	
	$('[tooltip]').qtip({ 
			  
	style: { name: 'blue', tip: 'bottomLeft' }, 
	hide: {
            fixed: true,
            delay: 240
    },
	position: 
	{
      corner: {
         target: 'topRight',
         tooltip: 'bottomLeft'
      }
    }

	
	})
	
});﻿

