ClueTip and Asp.net/PageMethods

ClueTip and Asp.net/PageMethods

Hello,
I'am realy in trouble with cluetip  and ajax.It does not work,Here is my code ;
 
 

<

script type ="text/javascript">

      $(document).ready(

function () {

      $(

'#mylink' ).cluetip({

      closePosition:

"title" ,

      sticky:

true ,

      mouseOutClose:

true ,

      ajaxSettings: {

      type:

'GET' ,

      url:

'Login.aspx' ,

      data:

'' ,

      contentType:

"application/json; charset=utf-7"

      },

      ajaxProcess:

function (data) {

      return "<h2>" + data + "</h2>" ;

      }

      });
  });
</
script >
 
And Also, I need your help.And I need particular example to show how to use pagemethod in asp.net with cluetip