function CSharing(parent)
{
	this.parent = parent;
	
	this.show = function()
	{
		this.parent.menu.select('game');
		
		var content = "";
		
		content += "<h2>YOUR MIND IS THE SCENE OF THE CRIME!</h2>";
		content += "<p>It is recommended that you connect with Facebook to play the INCEPTION: Mind Crime. As an Extractor, you will be able to steal assets from your friends as well as hide your own. Log in now to share your mazes, target friends, and compete other players in the leaderboards.</p>";
		content += "<div class=\"sharing-controls\"><a href=\"javascript:game.sharing.facebook()\" /><img src=\"images/login-fb.gif\" alt=\"Facebook Connect\"></a><input type=\"button\" value=\"No thanks\" onclick=\"game.messages.hide()\" /></div>";
		
		this.parent.messages.show("connect", content);
	}
	
	this.hide = function()
	{
		this.parent.messages.hide();
	}
	
	this.facebook = function()
	{
		FB.Connect.requireSession(function(){}, function(){}, true);
		this.hide();
	}
}

