// JavaScript
function setStyleMenuH(bgMenuH,spacemenuH,tbltextmenuH,textmenuH,nofoundH)
{
	this.BgMenuH=bgMenuH;
	this.SpaceMenuH=spacemenuH;
	this.tblTextMenuH=tbltextmenuH;
	this.TextMenuH=textmenuH;
	this.NoFoundH=nofoundH;
}
function setStyleMenuV(tblcontentV,pcontentV,textPV,textIV,iconmenuPV,iconmenuIV,spacemenuV,nofoundV,tblundermenuV,undermenuV,iselected,pselected,mouseoverVP,mouseoverVI,style_itemVP,style_itemVI)
{
	this.tblcontentV=tblcontentV;
	this.PcontentV=pcontentV;
	this.TextMenuPV=textPV;
	this.TextMenuIV=textIV;
	this.IconMenuPV=iconmenuPV;
	this.IconMenuIV=iconmenuIV;
	this.spaceMenuV=spacemenuV;
	this.NoFoundV=nofoundV;
	this.tblUnderMenuV=tblundermenuV;
	this.UnderMenuV=undermenuV;
	this.Iselected=iselected;
	this.Pselected=pselected;
	this.MouseOverVP=mouseoverVP;
	this.MouseOverVI=mouseoverVI;
	this.Style_ItemVI=style_itemVI;
	this.Style_ItemVP=style_itemVP;
}

setStyleMenuH('Bg-Menu','Space-Menu','tblTextMenuH','TextMenuH','TextNoFound')
setStyleMenuV('tblcontentV','PcontentV','TextMenuPV','TextMenuIV','Icon-MenuP','Icon-MenuI','spaceMenuV','TextNoFound','tblUnderMenuV','UnderMenuV','Iselected','Pselected','MouseOverVP','MouseOverVI','Style_ItemVP','Style_ItemVI')

