//= require <mootools-core-1.3-full-nocompat>
//= require <uiframework/Panel>
var TopLeftColumn = function()
{
	this.Extends = Panel;

	this.initialize = function()
	{
		this.parent("topLeftColumn");
		this.borderData(
		{
			bottom : "img/border-height35px.png",
			bottomRight : "img/bottom-right-corner-top-left-column.png"
		});
		this.backgroundStyle(
		{
			"background" : '#A5B7C9'
		});
	};
};
TopLeftColumn = new Class(new TopLeftColumn());
