cluetip and pagemethod

cluetip and pagemethod

how do we use cluetip and pagemethod together?
Here my code, I have ValidateMember method  Bu it still goes to the pageLoad Method ..

$(

'#ser' ).each( function () {

var statekey = $( this ).attr( "name" ).toString();

$(

"#ser" ).attr( "rel" , "Login.aspx/ValidateMember" ).cluetip({

showTitle:

true ,

closePosition:

"title" ,

sticky:

true ,

ajaxCache:

false ,

ajaxSettings: {

type:

"POST" ,

data:

"employee=10"

},

ajaxProcess:

function (data) {

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

}

});

});