function StreamShareObject (  ) {
	var self = this;
}

StreamShareObject.prototype = {
	shareStream : function ( isIndividual, dataObject ) {
		var self 	= this;
		var share	= null;
		
		switch ( isIndividual ) {
			case "video":
				share = {
					method		: 'feed',
					name		: dataObject.texts_posts_share_video[0],
					link		: dataObject.texts_posts_share_video[1],
					picture		: dataObject.texts_posts_share_video[2],
					// source
					// properties
					caption		: dataObject.texts_posts_share_video[3],
					description	: dataObject.texts_posts_share_video[4],
					message		: dataObject.texts_posts_share_video[5]
				};
			break;
			case "default":
				share = {
					method		: 'feed',
					name		: postCommentObject.cmsData.texts_posts_share[0],
					link		: postCommentObject.cmsData.texts_posts_share[1],
					picture		: postCommentObject.cmsData.texts_posts_share[2],
					caption		: postCommentObject.cmsData.texts_posts_share[3],
					description	: postCommentObject.cmsData.texts_posts_share[4],
					message		: postCommentObject.cmsData.texts_posts_share[5]
				};
			break;
		};
		
		FB.ui (
			share,
			function ( response ) {
				self.stream_callback ( response );
			}
		);
	},
	stream_callback : function ( _response ) {
		
	}
};
