(function(window){	function HorisontalLine(width, height, color)	{		this.width	= width;		this.height	= height;		this.color	= color || '#CCCCCC';		this.initialize();	}	HorisontalLine.prototype = new Shape();		// Constructor:		HorisontalLine.prototype.Shape_initialize = HorisontalLine.prototype.initialize;	// Unique to avoid overiding base class		HorisontalLine.prototype.initialize = function()		{			this.Shape_initialize();			this.graphics.beginFill(this.color);			this.graphics.drawRect(0, 0, this.width, this.height);			this.graphics.endFill();		}	window.HorisontalLine = HorisontalLine;}(window));
