function AddHLinkItem(href, Item, Target)
{    
	this.href   =href;
	this.Item   =Item;
    this.Target = Target;
}

function AddItem(Item)
{    
	this.Item=Item;
}

function AddList(Name,  ItemsArray, Description) 
{
   this.Name        = Name;
   this.Description = Description;
   this.Items       = ItemsArray;
}

function AddHLinkList(Name, ItemsArray, href, Target, Description, Image) 
{
   this.Name        = Name;
   this.Description = Description;
   this.Image       = Image;
   this.href        = href;
   this.Items       = ItemsArray;
   this.Target      = Target;
}

