Ajax link problem

Ajax link problem

$(document).ready(function() {
$('#main-content a').live('click', function() {
alert(this);
$('#main-content').load(this);
return false;
});
});

Why is the above code segment not loading the page?
When i replace this by an url it works correctly. The alert gives a correct url.