var OrderBoard = Class.create();
Object.extend(Object.extend(OrderBoard.prototype, Board.prototype), {
	initialize : function(option) {
		this._initialize(option);
		this.buildButtons();
		this.pages = this.buildElement(this.contentHeader, null, {display : "block"});
		this.attachListeners();
		this.currentPage = 1;
		this.rowsPerPage = 20;
		this.currentPage = 1;
		this.rowsPerPage = 20;
		this.processMap = {
			list : {
				NotSelected : this.targetView + "_Select",
				uid : this.targetView + "_SelectByUserId",
				subject : this.targetView + "_SelectBySubject",
				content : this.targetView + "_SelectByContent"
			} 
		};
		this.behavior = new Behavior(option);
		this.view.list.bind(this)();
	},
	buildOrderLink : function(itemId) {
		var chapeter = this.buildElement(this.contentHeader, {elementName : "a",
		href: "http://drop.io/abysslover", target: "_blank"});
		this.buildElement(chapeter, {elementName : "img",
		src: "style/ico/book.png"}, {border: "0px"});
	}
});