// JavaScript Document

// jQuery Qtip

// Create the tooltips only on document load
$(document).ready(function() 
{
   // By suppling no content attribute, the library uses each elements title attribute by default
   $('body a[href][title]').qtip({
      content: {
         text: false // Use each elements title attribute
      }, position: { adjust: { screen: true } },
     style: {
                  border: {
                     width: 1,
                     radius: 4
                  },
                  padding: 5, 
                  textAlign: 'center',
                  tip: true, // Give it a speech bubble tip with automatic corner detection
                  name: 'cream' }// Style it according to the preset 'cream' style

	  
   });
      $('#header [title]').qtip({
      content: {
         text: false // Use each elements title attribute
      }, position: { adjust: { screen: true } },
     style: {
                  border: {
                     width: 1,
                     radius: 4
                  },
                  padding: 5, 
                  textAlign: 'center',
                  tip: true, // Give it a speech bubble tip with automatic corner detection
                  name: 'cream' }// Style it according to the preset 'cream' style

	  
   });

   
   // NOTE: You can even omit all options and simply replace the regular title tooltips like so:
   // $('#content a[href]').qtip();
});

// End of jQuery Qtip