// JavaScript Document for DLM

jQuery(document).ready(function() {					

	
jQuery('a[title]').qtip({ style: { 
      padding: 5,
      background: '#89AAAF',
      color: '#211C16',
      textAlign: 'center',
      border: {
         width: 7,
         radius: 5,
         color: '#89AAAF'
      },
	  tip: 'bottomLeft',
      name: 'dark' 
   },
   	  position: {
      corner: {
         target: 'topRight',
         tooltip: 'bottomLeft'
      }
   }
});
});	


