﻿
$(document).ready(function() 
{
   //qtip - for reminder checkbox on checkout
   $('.tooltip').qtip(
   {
      content: 'Please check here if this order is for a special occasion.  You will be automatically reminded via email of the event.', // Give it some content, in this case a simple string
      position: {
          corner: {
             target: 'rightMiddle',
             tooltip: 'bottomLeft'
          }
       },
      style: {
        width: 310,
        name: 'cream', // Inherit from preset style
        tip: 'bottomLeft'
      }
   });
   
});
