function StreamSetStatusObject (  ) {
	var self		= this;
	
	this.url		= null;
}

StreamSetStatusObject.prototype = {
	setStatus : function ( _comment ) {
		var self = this;
		
		var comment = _comment.split ( "<br />" ).join ( "" );
		
		/*
			var my_message = ‘This is just a test!’;
			var url = ‘http://www.sundh.com/’;
			var title = ‘This is the name of my post’;
			var desc = ‘Optional description of my link’;
			var picUrl = ‘http://www.sundh.com/blog/images/led.jpg’;
		*/
		FB.api('/me/feed', 'post', { 
			message : postCommentObject.cmsData.texts_status_change[0] + " " + comment,
			link	: postCommentObject.cmsData.texts_status_change[1],
			name	: postCommentObject.cmsData.texts_status_change[2],
			picture	: postCommentObject.cmsData.texts_status_change[3],
			description : postCommentObject.cmsData.texts_status_change[4]
		}, function ( response ) {
			self.stream_callback ( response );
		});
	},
	stream_callback : function ( _response ) {
		if ( _response.error ) {
			for ( var i in _response.error ) {
				// alert ( i + " - " + _response.error[i] );
			};	
		} else {
			for ( var i in _response ) {
				// alert ( i + " - " + _response[i] );
			};	
		}
	}
}
