function pickUpUsers() {
	//ターゲットフレーム
	this.target		= '#pickup';
	//開閉ステータス
	this.statusName 	= 'pickupStatus';
	this.status		= UtlStr.cnvStringBoolean( $.cookie( this.statusName  ) || true );

	//VIEWステータス
	this.viewStatusName 	= 'pickupViewStatus';
	this.viewStatus		= UtlStr.cnvStringBoolean( $.cookie( this.viewStatusName ) || true );

	//XML
	this.xmlFile		= '/feed/users.php?format=j&lt=pickup';
//	this.xmlFile		= '/feed/users.php?format=j&lt=pickup&cache=' + (new Date()).getTime();

	this.title		= '編集部ピックアップユーザー';
	this.maxColumns		= 8;

	this.basicFrame();

	//サムネールリストボタン
	$(this.target + "_frame_button_list1").click( this.toggleListButton( this, true ));
	$(this.target + "_frame_button_list2").click( this.toggleListButton( this, false ));
}
pickUpUsers.prototype	= new fncFrameBodyUser;

