$(document).ready(function()
{
    $('a.restricted').click(function(event) {
        event.preventDefault();
    });

    $('a.restricted').qtip({
       content: 'Szakmai oldalak, kérjük jelentkezzen be vagy regisztráljon!',
       show: 'mouseover',
       hide: 'mouseout',
       style: { 
          name: 'dark' // Inherit from preset style
       },
       position: {
          corner: {
             target: 'bottomMiddle',
             tooltip: 'topMiddle'
          }
       }    
    });
    
});
