function StreamInviteSingleObject (  ) {
	var self		= this;
	
	this.url		= null;
	this.postUrl	= "http://test.com";
	this.profileUrl	= "http://www.facebook.com/profile.php?ref=profile&id=";
}

StreamInviteSingleObject.prototype = {
	inviteStream : function ( userID, comment ) {
		var self = this;
		
		var share = {
			method		: 'apprequests',
			to			: userID,
			message		: postCommentObject.cmsData.texts_posts_automated[1] + " " + comment,
			title		: postCommentObject.cmsData.texts_posts_automated[0],
			data		: postCommentObject.cmsData.texts_posts_automated[2]
		 };
		 
		 FB.ui (
			share,
			function ( response ) {
				self.stream_callback ( response );
			}
		);
	},
	stream_callback : function ( _response ) {
		
	}
}
