/**
 *@class EntryAll
 *@extends Div
 */


var EntryAll = Class.create();


EntryAll.prototype = Object.extend(new Div, {


	/**
	 *@constructor initialize
	 */
	initialize: function (id,parentObj,no) {
		this.id=id;
		this.parentObj=parentObj;
		this.no=no;
		this.createDiv();
		//this.display();
		//this.setStyle();
	},





	/**
	 *display
	 */
	display: function () {
		var html=this.id;
		$(this.id).innerHTML=html;
	},



	/**
	 *setStyle
	 */
	setStyle: function () {
		Element.setStyle($(this.id),{


		});
	}





});
