You can chain them, like so. I think this is what you are looking for
Code:
$('a.glossaryLink').mouseover(function(event){
onRollOverPULink(event, 'Life')
}).onmouseout(function(event){
onRollOutPULink(event)
}).click(function(event){
defineTerm(event)
})