// JavaScript Document

$(document).ready(function(){
$( 'a[name="agenda"]' ).qtip({ 
style: { 
      width: 190,
      padding: 6,
      background: '#C0A37A',
      color: 'black',
      textAlign: 'left',
border: {
         width: 1,
         radius: 3,
         color: '#554224'
      },
      tip: 'topMiddle',
      name: 'dark', 
   },
   
position: {
corner: {
      target: 'bottomMiddle',
      tooltip: 'topMiddle'
   }
}
   
});
});
