You only need to include the script reference one time and call init on the script when the page is loaded. You can use this for either the fb:like buttons or the login script.
<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script>
FB.init({
appId : 'YOUR APP ID',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
</script>
The key to this is setting the xfbml to true (this is what the #xfbml=1 does). If you dont have that set then the like buttons wont render.
If you want to subscribe to the login event just add the following script after the FB.init() call:
FB.Event.subscribe('auth.login', function(response) {
window.location.reload(); // or something else...
});
And here would be your login script to be fired ONLY when a user clicks on a link, button, etc.
function doLogin() {
FB.login(function(response) {
if (response.session) {
if (response.perms) {
// user is logged in and granted some permissions.
// perms is a comma separated list of granted permissions
} else {
// user is logged in, but did not grant any permissions
}
} else {
// user is not logged in
}
}, {perms:'read_stream,publish_stream,offline_access'});
}