$(document).ready(function() {

 //$("a.tool_tip").easyTooltip();
  
  // By suppling no content attribute, the library uses each elements title attribute by default
   $('#calender a[href][title]').qtip({
      content: {
         text: false // Use each elements title attribute
      },
      
      style: {
                  border: {
                     width: 1,
                     radius: 10,
                     color: '#cddcf2'
                  },
                  padding: 0, 
                  textAlign: 'center',
                  background: '#cddcf2',
                  tip: true, // Give it a speech bubble tip with automatic corner detection
                  name: 'blue' // Style it according to the preset 'cream' style
               },
       position: {
      corner: {
         target: 'bottomMiddle',
         tooltip: 'topMiddle'
      }
      
   },
	hide: { when: 'mouseout', fixed: true }

   });
   
   

});


function activatecal()
{
 //$("a.tool_tip").easyTooltip();
  
  // By suppling no content attribute, the library uses each elements title attribute by default
   $('#calender a[href][title]').qtip({
      content: {
         text: false // Use each elements title attribute
      },
      
      style: {
                  border: {
                     width: 1,
                     radius: 10,
                     color: '#cddcf2'
                  },
                  padding: 0, 
                  textAlign: 'center',
                  background: '#cddcf2',
                  tip: true, // Give it a speech bubble tip with automatic corner detection
                  name: 'blue' // Style it according to the preset 'cream' style
               },
       position: {
      corner: {
         target: 'bottomMiddle',
         tooltip: 'topMiddle'
      }
      
   },
	hide: { when: 'mouseout', fixed: true }

   });
   

}




