 /**
 * 用户公告模块
 * @type Object
 */
var BulletinModule = {
	 _uudId : INIT_LOAD_DATA._uud_id,
   _contentItem : "",
    /**
     * 获取用户公告信息
     *
     * @return {String}
     *         返回用户公告信息
     */ 
  getBulletins : function ( ){
  	 BulletinModule.getBulletinList( BulletinModule._uudId,'GB2312' );
  },
      /**
     * 获取用户公告信息
     * @param  {Integer}uudId
     *         用户ID
     * @param  {Integer}coding
     *         编码
     * @return {String}
     *         返回用户公告信息
     */ 
 getBulletinList : function (uudId, coding ){
  		BulletinModule.showBulletinResult();
  },
    /**
     * 显示首页小模块公告信息
     * @return {String} json
     *         
     */
  showBulletinResult : function () {
  	 var _userName = INIT_LOAD_DATA._userName;
  	 var _a = [];
	 	 	_a.push('\
					<div id="qzsubmenu1"><span class="blogtext12ul2">['+INIT_LOAD_DATA._club_crea_time+']</span><br />\
					'+INIT_LOAD_DATA._club_affiche+'	  </div>\
				  <div class="allblanktable10"></div>\
			');
		
		$('blogClubModule402').innerHTML =  _a.join("");
  }
};  
