// инициализация
$(document).ready(function(){
	if ($('.facebook-small').length > 0)
	{
		window.fbAsyncInit = function() {
		    FB.init({
		      appId  : FB_APP_ID,
		      status : true, // check login status
		      cookie : true, // enable cookies to allow the server to access the session
		      xfbml  : true  // parse XFBML
		    });
		   
		  };
		
		  (function() {
		    var e = document.createElement('script');
		    e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
		    e.async = true;
		    document.getElementById('fb-root').appendChild(e);
		  }());
	}
});


// редиректы
function fb(response)
{
  if (response.session) {
		    // user successfully logged in
			window.location.href='openidlogin?provider=facebook';
			//FB.logout();
			 
		  } else {
		    // user cancelled login
			  window.location.reload();
		  }

}
