(function(window){	function Bullit(color)	{		this.color	= color || ColorUtils.random();		this.initialize();	}	Bullit.prototype = new Container();		Bullit.prototype.radius	= 6;		Bullit.prototype.speed	= 10;		Bullit.prototype.vY		= 0;	// The velocity and vertical direction of the bullit		// Constructor:		Bullit.prototype.Container_initialize = Bullit.prototype.initialize;	// Unique to avoid overiding base class		Bullit.prototype.initialize = function()		{			this.Container_initialize();			this.drawShape();		}		Bullit.prototype.drawShape = function()		{			var shape	= new Shape();			shape.graphics.beginFill(this.color);			shape.graphics.drawCircle(-this.radius/2, -this.radius/2, this.radius);			shape.graphics.endFill();			this.addChild(shape);		}	window.Bullit = Bullit;}(window));
