$(document).ready(function()
{

// Set the default values for all qTips on this poge

    $.fn.qtip.defaults.style = {
         border: {
                     width: 5,
                     radius: 10,
                     color: '#9379D0'
                  },
          padding: 10,
          textAlign: 'center',
          name: 'light' // Style it according to the preset 'cream' style
          //width: { max: 100 }
      };
   $.fn.qtip.defaults.show.ready = true ;
   $.fn.qtip.defaults.show.effect = { type: 'slide', length: 500};

/////////////////////////////////////////////////////////////////////////////////

  $('#masthead').qtip(
   {
      content: 'The #1 E-newsletter dedicated to Nursing Moms',
      style: { tip: true, width: { max: 200 } }, // This will not work if set as a default.
      hide: false,
      position: { corner: { target: 'leftMiddle', tooltip: 'rightMiddle' } }
   });

   $('#dueDate').qtip(
   {
      content: 'Delivery customized to your due date',
      style: { tip: true, width: { max: 200 } }, // This will not work if set as a default.
      hide: false,
      position: { corner: { target: 'leftMiddle', tooltip: 'rightMiddle' }, adjust: { x: -22, y: 0 } }
   });

   $('#featuredArticle').qtip(
   {
      content: "Information and support from your third trimester to baby's first birthday",
      style: { tip: true, width: { max: 200 } }, // This will not work if set as a default.
      hide: false,
      position: { corner: { target: 'leftMiddle', tooltip: 'rightMiddle' }, adjust: { x: -22, y: 0 } }
   });

   //$('#didYouKnow').qtip(
   //{
   //   content: "Interesting information of help to you",
   //   style: { tip: true, width: { max: 200 } }, // This will not work if set as a default.
   //   hide: false,
   //   position: { corner: { target: 'leftMiddle', tooltip: 'rightMiddle' }, adjust: { x: -22, y: 0 } }
   //});


///////// Right Side

   $('#masthead').qtip(
   {
      content: "Brought to you by Lansinoh",
      style: { tip: true, width: { max: 200 } }, // This will not work if set as a default.
      hide: false,
      position: { corner: { target: 'rightMiddle', tooltip: 'leftMiddle' }, adjust: { x: 0, y: 0 } }
   });

   $('#socialMediaLinks').qtip(
   {
      content: "Share notes and connect with us through social media",
      style: { tip: true, width: { max: 200 } }, // This will not work if set as a default.
      hide: false,
      position: { corner: { target: 'rightMiddle', tooltip: 'leftMiddle' }, adjust: { x: 18, y: 0 } }
   });

   $('#quickTips').qtip(
   {
      content: "Quick tips from our breastfeeding expert Gina Ciagne, Certified Lactation Counselor",
      style: { tip: true, width: { max: 200 } }, // This will not work if set as a default.
      hide: false,
      position: { corner: { target: 'rightMiddle', tooltip: 'leftMiddle' }, adjust: { x: 18, y: -140 } }
   });

  $('#productSpotlight').qtip(
   {
      content: "Product, Video and Checklist Spotlight",
      style: { tip: true, width: { max: 200 } }, // This will not work if set as a default.
      hide: false,
      position: { corner: { target: 'rightMiddle', tooltip: 'leftMiddle' }, adjust: { x: 18, y: 90 } }
   });

   $('#helpfulLinks').qtip(
   {
      content: 'Links to more information from <a href="http://www.lansinoh.com">Lansinoh.com</a>',
      style: { tip: true, width: { max: 200 } }, // This will not work if set as a default.
      hide: false,
      position: { corner: { target: 'rightMiddle', tooltip: 'leftMiddle' }, adjust: { x: 18, y: 0 } }
   });

})

