$(function()
{
   // Match all link elements with href attributes within the content div
   //$('.dialog_password').qtip(
   //{
      //content: 'Dit mag u zelf bedenken en wordt gebruikt als u bv. uw gegevens wilt wijzigen.', // Give it some content, in this case a simple string
   //});
   $(".dialog_password").qtip({
   content: 'Dit mag u zelf bedenken en wordt gebruikt als u bv. uw gegevens wilt wijzigen.',
   position: {
      corner: {
         target: 'topRight',
         tooltip: 'bottomLeft'
      }
   },
   style: { 
      width: 200,
      padding: 5,
      color: 'black',
      border: {
         radius: 4
      },
      tip: 'bottomLeft',
      name: 'blue' // Inherit the rest of the attributes from the preset dark style
   }
});
});
