facebook graph api determine if user likes url



I want to display a different message if a user is currently logged in to facebook and likes the current page. I understand:

FB.Event.subscribe('edge.create', function(response) {
// you like this
});

Which will fire when a user likes the page, but when you reload the page how do you determine they already like the current page?

Thanks!