function fxDropdown( name ){
	this.Items = new Array();
	this.name = name;
	this.Add = Add;
}

function fxDropdownMenu( id, label, target){
	this.Items = new Array();
	this.id = id;
	this.label = label;
	this.target = target;
	this.Add = Add;
}

function fxDropdownItem( id, label, target){
	this.id = id;
	this.label = label;
	this.target = target;
}

function Add( item ){
	this.Items.push( item );
}