// User login javascript

function FBonLogin()
{
	// Probably more here in the future, but for now, just pass them to the page to create their account.
	window.location = '/user/facebook';
}
		
function FBonLogout()
{
	alert("Oh snap, you leavin' dog?");
	FB.Connect.logoutAndRedirect('/user/logout');
}