//= require <mootools-core-1.3-full-nocompat>
//= require <uiframework/Panel>
var ListingEditorView = function()
{
	this.Extends = Panel;
	
	this.initialize = function()
	{
		this.parent("listingEditor");
		
		this.setStyles({
			"z-index":30
		});
		
		this.borderData(
		{
			topLeft : "img/panel-top-left.png",
			top : "img/panel-top-border.png",
			topRight : "img/panel-top-right.png",
			right : "img/panel-right-border.png",
			bottomLeft : "img/panel-bottom-left.png",
			bottomRight : "img/panel-bottom-right.png",
			bottom : "img/panel-bottom-border.png",
			left : "img/panel-left-border.png"
		});

		this.backgroundStyle({
			"background-color" : "#FFF"
		});
	};
};
ListingEditorView = new Class(new ListingEditorView());
