// Global Menu Varvar menusExist;mProps=[""]; // top-level array for each menu group that holds config/style & content arrays (ie. mProps[1][0] holds the array with definitions for the 1st menu group, the [0] in mProps[1][0] is literally the value that holds the array, while the [1] is the number of the menu - starts at 1 instead of 0mCount=0;aActiveItem=[""]; // temp array for menu itemsaActiveGroup=[""]; // temp array for menu group/containersaActiveGroupImg=[""];mTimer=0;mTimerS=0;hideTimeout=400;mImgDir="/images/topnav/";mTop=8;mMainImgH=17;mSubImgW=125;mSubImgH=13;defaultScript='mFunctions.js';ns4Script='mFunctionsNS4.js';//// Common functionsfunction addMenu(aGroupProps,aItemProps){	mCount++;	mProps[mCount]=[];	mProps[mCount][0]={		pId:aGroupProps.pId,		pWidth:aGroupProps.pWidth,		pLeft:aGroupProps.pLeft	}	for (var k in aGroupProps){		eval("mProps[mCount][0]."+k+"=aGroupProps."+k);	}	for (var i=0;i<aItemProps.length;i++){		mProps[mCount][i+1]={};		for (var j in aItemProps[i]){			eval("mProps[mCount][i+1]."+j+"=aItemProps[i]."+j);		}		mProps[mCount][i+1].pOffImg=new Image;		mProps[mCount][i+1].pOffImg.src=mImgDir+aItemProps[i].pImg+".gif";		mProps[mCount][i+1].pOnImg=new Image;		mProps[mCount][i+1].pOnImg.src=mImgDir+aItemProps[i].pImg+"_on.gif";	}}function getMenuNum(mId){	for(var i=1;i<=mCount;i++){		if(mId==mProps[i][0].pId)break;	}	return i;}addMenu({pId:'browse',pMainImgW:126,pLeft:624},[{pImg:'face',pUrl:'#url'},{pImg:'facecleansers',pUrl:'#url'},{pImg:'tonics',pUrl:'#url'},{pImg:'scrubs',pUrl:'#url'},{pImg:'facemoisturizers',pUrl:'#url'},{pImg:'eyes',pUrl:'#url'},{pImg:'lips',pUrl:'#url'},{pImg:'body',pUrl:'#url'},{pImg:'bodycleansers',pUrl:'#url'},{pImg:'soaks',pUrl:'#url'},{pImg:'exfoliators',pUrl:'#url'},{pImg:'bodymoisturizers',pUrl:'#url'},{pImg:'handsfeet',pUrl:'#url'},{pImg:'hair',pUrl:'#url'},{pImg:'shampoo',pUrl:'#url'},{pImg:'conditioner',pUrl:'#url'},{pImg:'stylingprods',pUrl:'#url'},{pImg:'mombaby',pUrl:'#url'},{pImg:'postpregnancy',pUrl:'#url'},{pImg:'baby',pUrl:'#url'},{pImg:'kids',pUrl:'#url'},{pImg:'pets',pUrl:'#url'}]);// Write Browser Functionsdocument.write("<script language='JavaScript1.2' src='"/js/"+(NS4?ns4Script:defaultScript)+"' type='text/javascript'></script>");OPR6=OPR&&document.body.offsetWidth?1:0
