//////////////////////////////////////////////////////////////////////////////
//	jaxdropdown.js
//
//	Description:
//		DropDown selection widget.
//////////////////////////////////////////////////////////////////////////////
Jax.Widgets.DropDown = function() {

	// Declare class and set instance.
	Jax.oop.declare(Jax.Widgets.DropDown, Jax.Widgets.Selection);
	this.setInstance();
	
	// Setup instance data.
	this.initialize(arguments);
};
