/**
 * @author Sulaeman, sulaeman.nowhere@gmail.com
 */

FeelInc.ui.News = function() {

	return {
	
	build: function(){
		FeelInc.ui.Default.init();
		if ($('#news_edit')[0] != null) {
			FeelInc.ui.News.buildEditor();
		}
	},
	
	buildEditor: function(){
		$(function(){ $('textarea').fck({path: _doc_root_path+'/libs/fckeditor/', toolbar:'Basic', width:615}); });
	}
	
	};
	
}();
