function lib_bwcheck(){ //Browsercheck (needed)

	this.ver=navigator.appVersion; this.agent=navigator.userAgent

	this.dom=document.getElementById?1:0

	this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom)?1:0;

	this.ie6=(this.ver.indexOf("MSIE 6")>-1 && this.dom)?1:0;

	this.ie4=(document.all && !this.dom)?1:0;

	this.ie=this.ie4||this.ie5||this.ie6

	this.mac=this.agent.indexOf("Mac")>-1

	this.opera5=this.agent.indexOf("Opera 5")>-1

	this.ns6=(this.dom && parseInt(this.ver) >= 5) ?1:0; 

	this.ns4=(document.layers && !this.dom)?1:0;

	this.bw=(this.ie6 || this.ie5 || this.ie4 || this.ns4 || this.ns6 || this.opera5 || this.dom)

	return this

}

var bw=new lib_bwcheck() //Making browsercheck object



var mDebugging=2 //General debugging variable. Set to 0 for no debugging, 1 for alerts or 2 for status debugging.







//MENU 2 STARTING - The only thing to remember if you want to have more then 1 menu on the page is to name your menu with another name



oCMenu2=new makeCoolMenu("oCMenu2") 

oCMenu2.useframes=0 //Do you want to use the menus as coolframemenu or not? (in frames or not) - Value: 0 || 1

oCMenu2.frame="frmMain" 



oCMenu2.offlineUrl="file:///C|/Inetpub/wwwroot/coolMenus/" 



oCMenu2.onlineUrl="http://www.dhtmlcentral.com/examples/withframes/" 



oCMenu2.pagecheck=1 

oCMenu2.checkscroll=0 

oCMenu2.resizecheck=1 

oCMenu2.wait=1000 



//Background bar properties

oCMenu2.usebar=1 

oCMenu2.barcolor="#cccccc" 

oCMenu2.barwidth="menu" 

oCMenu2.barheight="menu" 

oCMenu2.barx="menu" 

oCMenu2.bary="menu" 

oCMenu2.barinheritborder=0 



//Placement properties

oCMenu2.rows=0 

oCMenu2.fromleft=20 

oCMenu2.fromtop=120 

oCMenu2.pxbetween=0 





oCMenu2.menuplacement=0



//TOP LEVEL PROPERTIES - ALL OF THESE MUST BE SPESIFIED FOR LEVEL[0]

oCMenu2.level[0]=new Array() //Add this for each new level

oCMenu2.level[0].width=119 

oCMenu2.level[0].height=20 

oCMenu2.level[0].bgcoloroff="transparent" 

oCMenu2.level[0].bgcoloron="#999999" 

oCMenu2.level[0].textcolor="#000000" 

oCMenu2.level[0].hovercolor="#000000" 

oCMenu2.level[0].style="padding:0px; font-family:arial,helvetica; font-size:10px;"

oCMenu2.level[0].border=0 

oCMenu2.level[0].bordercolor="#000000" 

oCMenu2.level[0].offsetX=0 

oCMenu2.level[0].offsetY=0 

oCMenu2.level[0].NS4font="arial,helvetica"

oCMenu2.level[0].NS4fontSize="1"



oCMenu2.level[0].align="right" 





oCMenu2.level[1]=new Array() 

oCMenu2.level[1].width=oCMenu2.level[0].width + 10    

oCMenu2.level[1].height=14

oCMenu2.level[1].bgcoloroff="#ffffff"

oCMenu2.level[1].bgcoloron="#cccccc"

oCMenu2.level[1].hovercolor="#F96A04"

oCMenu2.level[1].style="padding:0px; font-family:arial,helvetica; font-size:10px;font-weight:bold;"

oCMenu2.level[1].align="center" 

oCMenu2.level[1].offsetX=0

oCMenu2.level[1].offsetY=0

oCMenu2.level[1].border=1 

oCMenu2.level[1].bordercolor="#999999"

oCMenu2.level[1].align="right"



oCMenu2.level[2]=new Array() //Add this for each new level (adding one to the number)

oCMenu2.level[2].width=oCMenu2.level[1].width + 10    // reduction number -10

oCMenu2.level[2].height=14

oCMenu2.level[2].bgcoloroff="#ffffff"

oCMenu2.level[2].bgcoloron="#cccccc"

//oCMenu2.level[2].textcolor="blue"

oCMenu2.level[2].hovercolor="F96A04"

oCMenu2.level[2].style="padding:0px; font-family:arial,helvetica; font-size:10px;font-weight:bold;"

oCMenu2.level[2].align="center" 

oCMenu2.level[2].offsetX=0

oCMenu2.level[2].offsetY=0

oCMenu2.level[2].border=1 

oCMenu2.level[2].bordercolor="#999999"



/*Variables for each menu item: (** means that they have to be spesified!)

name: The name of the item. This must be unique for each item. Do not use spaces or strange charachters in this one! **

parent: The name of the menuitem you want this to "connect" to. This will be a submenu of the item that have the name you place in here. ** for all other then the topitems

text: The text you want in the item. ** (except if you use images) 

link: The page you want this item to link to.

target: The target window or frame you want the link to go to (Default is same window if you're not using frames, and the mainframe if you're using frames)

width: The width of the element. If not spesified it will get the default width spesified above.

height: The height of the element. If not spesified it will get the default height spesified above.

img1: The "off" image for element if you want to use images.

img2: The image that appears onmouseover if using images.

bgcoloroff: The background color for this item. If not spesified it will get the default background color spesified above.

bgcoloron: The "on" background color for this item. If not spesified it will get the default "on" background color spesified above.

textcolor: The text color for this item. If not spesified it will get the default text color spesified above.

hovercolor: The "on" text color for this item. If not spesified it will get the default "on" text color spesified above. Netscape4 ignores this

onclick: If you want something to happen when the element is clicked (different from going to a link) spesifiy it here.

onmouseover: This will happen when you mouseover the element. Could be status text, another imageswap or whatever.

onmouseout: This will happen when you mouseout the element.



Remember you can have as many levels/sublevels as you want. Just make sure you spesify the correct "parent" for each item.

To set styles for each level see above.



***MENU SPACER ELEMENTS

-3DOT IMAGE

-WHITE SPACER GIF



*/





	

	

	

			

/** MENU ITEM TOP**/

oCMenu2.makeMenu('topz','','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/hdrphn_home_ON1.gif" width="119" height="34" alt="Phones Home." border="0">','http://idenphones.motorola.com/iden/products/phones/phones_home.jsp','','','33','','','#ffffff','#ffffff','','','','','')



/**  BAR **/

	oCMenu2.makeMenu('bar0','','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer_wht.gif" width="210" height="2" alt="" border="0">','','','','1','','','','#cccccc','','','','','')





/** MENU ITEM TOP 0**/

oCMenu2.makeMenu('top0','','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="1" height="5" alt="" border="0"><br>&nbsp;&nbsp;<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/3orange_dots_gray.gif" width="8" height="8" alt="" border="0">&nbsp;Phones<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/images/pixel.gif" width="50" height="8" alt="" border="0"><img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/3orange_dots_gray.gif" width="8" height="8" alt="" border="0">','','','','25','','','','','','','','','')







/** ------------------- submenu for products ------------------- **/

/** MENU ITEM TOP 0 SUB 00-12**/

	oCMenu2.makeMenu('asub11','top0','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="20" height="1" alt="" border="0" >i830','ec_MAIN.Entry10?V1=641392&PN=1&SP=10023&xid=39192','','','','','','','','','','','','')	

	oCMenu2.makeMenu('asub10','top0','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="20" height="1" alt="" border="0" >i730','ec_MAIN.Entry10?V1=616865&PN=1&SP=10023&xid=39192','','','','','','','','','','','','')	

	oCMenu2.makeMenu('asub09','top0','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="20" height="1" alt="" border="0" >i710','ec_MAIN.Entry10?V1=643964&PN=1&SP=10023&xid=39192','','','','','','','','','','','','')	

	oCMenu2.makeMenu('asub08','top0','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="20" height="1" alt="" border="0" >i530','ec_MAIN.Entry10?V1=622822&PN=1&SP=10023&xid=39192','','','','','','','','','','','','')	

	oCMenu2.makeMenu('asub07','top0','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="20" height="1" alt="" border="0" >i305','ec_MAIN.Entry10?V1=621571&PN=1&SP=10023&xid=39192','','','','','','','','','','','','')	

	oCMenu2.makeMenu('asub06','top0','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="20" height="1" alt="" border="0" >i205','ec_MAIN.Entry10?V1=616862&PN=1&SP=10023&xid=39192','','','','','','','','','','','','')	

	oCMenu2.makeMenu('asub05','top0','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="20" height="1" alt="" border="0" >i88s','ec_MAIN.Entry10?V1=364226&PN=1&SP=10023&xid=39192','','','','','','','','','','','','')	

	oCMenu2.makeMenu('asub04','top0','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="20" height="1" alt="" border="0" >i60c','ec_MAIN.Entry10?V1=412700&PN=1&SP=10023&xid=39192','','','','','','','','','','','','')

	oCMenu2.makeMenu('asub03','top0','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="20" height="1" alt="" border="0" >i58sr','ec_MAIN.Entry10?V1=468591&PN=1&SP=10023&xid=39192','','','','','','','','','','','','')

	oCMenu2.makeMenu('asub02','top0','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="20" height="1" alt="" border="0" >i35s','ec_MAIN.Entry10?V1=470246&PN=1&SP=10023&xid=39192','','','','','','','','','','','','')

	oCMenu2.makeMenu('asub01','top0','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="20" height="1" alt="" border="0" >i30sx','ec_MAIN.Entry10?V1=371360&PN=1&SP=10023&xid=39192','','','','','','','','','','','','')	

	oCMenu2.makeMenu('asub00','top0','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="20" height="1" alt="" border="0" >r750plus','ec_MAIN.Entry10?V1=364235&PN=1&SP=10023&xid=39192','','','','','','','','','','','','')	





/** ------------------------------------------------ end of submenu ---------------- **/





/** BAR **/

	oCMenu2.makeMenu('bar1','','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer_wht.gif" width="210" height="2" alt="" border="0" >','','','','1','','','','#cccccc','','','','','')



/** MENU ITEM TOP1 SPECIAL EDITIONS**/

oCMenu2.makeMenu('top1','','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="1" height="5" alt="" border="0"><br>&nbsp;&nbsp;<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/3orange_dots_gray.gif" width="8" height="8" alt="" border="0">&nbsp;Special Editions<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/images/pixel.gif" width="8" height="8" alt="" border="0"><img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/3orange_dots_gray.gif" width="8" height="8" alt="" border="0">','','','','25','','','','','','','','','')



/** BLOOMINGDALES **/

	oCMenu2.makeMenu('bsub00','top1','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="20" height="1" alt="" border="0" >Bloomingdales&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/3orange_dots_gray.gif" width="8" height="8" alt="" border="0">','','','','','','','','','','','','','')



/** BLOOMINGDALES SUB MENU **/


	oCMenu2.makeMenu('bsub003','bsub00','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="20" height="1" alt="" border="0" >i833 Limited Edition','ec_MAIN.Entry10?V1=661984&PN=1&SP=10023&xid=39192','','','','','','','','','','','','')	


	oCMenu2.makeMenu('bsub002','bsub00','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="20" height="1" alt="" border="0" >i733 Limited Edition','ec_MAIN.Entry10?V1=620356&PN=1&SP=10023&xid=39192','','','','','','','','','','','','')	

	

        oCMenu2.makeMenu('bsub001','bsub00','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="20" height="1" alt="" border="0" >i95cl Blue Translucent','ec_MAIN.Entry10?V1=528724&PN=1&SP=10023&xid=39192','','','','','','','','','','','','')







/**Bobby Jones**/

	oCMenu2.makeMenu('bsub01','top1','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="20" height="1" alt="" border="0" >Bobby Jones&nbsp;<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="31" height="1" alt="" border="0" ><img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/3orange_dots_gray.gif" width="8" height="8" alt="" border="0">','','','','','','','','','','','','','')



/**Bobby Jones Sub Level **/

	oCMenu2.makeMenu('fsub001','bsub01','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="20" height="1" alt="" border="0" >i99cl','ec_MAIN.Entry17c?SP=10007&PN=5&CID=0&SID=39192&PID=576231','','','','','','','','','','','','')





	oCMenu2.makeMenu('bsub02','top1','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="20" height="1" alt="" border="0" >Boost&nbsp;&nbsp;&nbsp;&nbsp;<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="57" height="1" alt="" border="0" ><img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/3orange_dots_gray.gif" width="8" height="8" alt="" border="0">','','','','','','','','','','','','','')





/**LEVEL 2 BSUB00 MENU BOOST**/

	oCMenu2.makeMenu('csub009','bsub02','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="20" height="1" alt="" border="0" >i730','ec_MAIN.Entry17c?SP=10007&PN=5&CID=0&SID=39192&PID=625851','','','','','','','','','','','','')



	oCMenu2.makeMenu('csub008','bsub02','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="20" height="1" alt="" border="0" >i205','ec_MAIN.Entry17c?SP=10007&PN=5&CID=0&SID=39192&PID=613141','','','','','','','','','','','','')



	oCMenu2.makeMenu('csub007','bsub02','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="20" height="1" alt="" border="0" >i95cl','ec_MAIN.Entry17c?SP=10007&PN=5&CID=0&SID=39192&PID=429217','','','','','','','','','','','','')



	oCMenu2.makeMenu('csub006','bsub02','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="20" height="1" alt="" border="0" >i90c','ec_MAIN.Entry17c?SP=10007&PN=5&CID=0&SID=39192&PID=477869','','','','','','','','','','','','')



	oCMenu2.makeMenu('csub005','bsub02','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="20" height="1" alt="" border="0" >i60c','ec_MAIN.Entry17c?SP=10007&PN=5&CID=0&SID=39192&PID=429216','','','','','','','','','','','','')



	oCMenu2.makeMenu('csub004','bsub02','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="20" height="1" alt="" border="0" >i55sr Black','ec_MAIN.Entry17c?SP=10007&PN=5&CID=0&SID=39192&PID=429211','','','','','','','','','','','','')



oCMenu2.makeMenu('csub003','bsub02','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="20" height="1" alt="" border="0" >i55sr Pink','ec_MAIN.Entry17c?SP=10007&PN=5&CID=0&SID=39192&PID=429213','','','','','','','','','','','','')



	oCMenu2.makeMenu('csub002','bsub02','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="20" height="1" alt="" border="0" >i55sr Silver','ec_MAIN.Entry17c?SP=10007&PN=5&CID=0&SID=39192&PID=429215','','','','','','','','','','','','')



	oCMenu2.makeMenu('csub001','bsub02','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="20" height="1" alt="" border="0" >i50sx Blue','ec_MAIN.Entry17c?SP=10007&PN=5&CID=0&SID=39192&PID=427861','','','','','','','','','','','','')





/**NASCAR**/

	oCMenu2.makeMenu('bsub03','top1','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="20" height="1" alt="" border="0" >NASCAR &nbsp;&nbsp;<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="46" height="1" alt="" border="0" ><img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/3orange_dots_gray.gif" width="8" height="8" alt="" border="0">','','','','','','','','','','','','','')



/**NASCAR Sub Menu **/

	oCMenu2.makeMenu('esub001','bsub03','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="20" height="1" alt="" border="0" >NASCAR Nextel i736','ec_MAIN.Entry17c?SP=10007&PN=5&CID=0&SID=39192&PID=627373','','','','','','','','','','','','')





/** BAR **/

	oCMenu2.makeMenu('bar2','','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer_wht.gif" width="210" height="2" alt="" border="0" >','','','','1','','','','#cccccc','','','','','')





/**MENU ITEM TOP **/

oCMenu2.makeMenu('top2','','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="1" height="5" alt="" border="0"><br>&nbsp;&nbsp;<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/3orange_dots_gray.gif" width="8" height="8" alt="" border="0">&nbsp;Mobile Units<img src="/v2.0-img/images/pixel.gif" width="26" height="8" alt="" border="0"><img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/3orange_dots_gray.gif" width="8" height="8" alt="" border="0">','','','','25','','','','','','','','','')



/** ------------------- sub menu -  sw support ---------------------------------- **/



/** MENU ITEM TOP 2 CSUB 00-03**/



	oCMenu2.makeMenu('csub00','top2','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="20" height="1" alt="" border="0" >b370','ec_MAIN.Entry10?V1=364243&PN=1&SP=10023&xid=39192','','','','','','','','','','','','')



	oCMenu2.makeMenu('csub01','top2','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="20" height="1" alt="" border="0" >m470','ec_MAIN.Entry10?V1=364242&PN=1&SP=10023&xid=39192','','','','','','','','','','','','')	



	oCMenu2.makeMenu('csub02','top2','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="20" height="1" alt="" border="0" >m370','ec_MAIN.Entry10?V1=364241&PN=1&SP=10023&xid=39192','','','','','','','','','','','','')	



oCMenu2.makeMenu('csub03','top2','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="20" height="1" alt="" border="0" >m100','ec_MAIN.Entry10?V1=364240&PN=1&SP=10023&xid=39192','','','','','','','','','','','','')	

	

/** ------------------------------------------------------- end of sub menu ----- **/



/** BAR **/

		oCMenu2.makeMenu('bar3','','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer_wht.gif" width="210" height="2" alt="" border="0" >','','','','1','','','','#cccccc','','','','','')





/**MENU ITEM TOP **/

oCMenu2.makeMenu('top3','','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="1" height="5" alt="" border="0"><br>&nbsp;&nbsp;<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/3orange_dots_gray.gif" width="8" height="8" alt="" border="0">&nbsp;Modems<img src="/v2.0-img/images/pixel.gif" width="45" height="8" alt="" border="0"><img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/3orange_dots_gray.gif" width="8" height="8" alt="" border="0">','','','','25','','','','','','','','','')



/** MENU ITEM TOP 3 DSUB 00-02**/

	oCMenu2.makeMenu('dsub00','top3','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="20" height="1" alt="" border="0" >iM1100','ec_MAIN.Entry10?V1=379980&PN=1&SP=10023&xid=39192','','','','','','','','','','','','')	



oCMenu2.makeMenu('dsub01','top3','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="20" height="1" alt="" border="0" >iM1000','ec_MAIN.Entry10?V1=379977&PN=1&SP=10023&xid=39192','','','','','','','','','','','','')	



/** ------------------------------------------------------- end of sub menu ----- **/



/** BAR **/

	oCMenu2.makeMenu('bar4','','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer_wht.gif" width="210" height="2" alt="" border="0" >','','','','1','','','','#cccccc','','','','','')

		

/** MENU ITEM TOP 4**/

oCMenu2.makeMenu('top4','','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="1" height="5" alt="" border="0"><br>&nbsp;&nbsp;<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/3orange_dots_gray.gif" width="8" height="8" alt="" border="0">&nbsp;Product Manuals&nbsp;&nbsp;','http://idenphones.motorola.com/iden/support/support_product_manuals_main.jsp?','','','25','','','','','','','','','')



/** BAR **/

	oCMenu2.makeMenu('bar5','','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer_wht.gif" width="210" height="2" alt="" border="0">','','','','1','','','','#cccccc','','','','','')

	

/** MENU ITEM TOP 5**/

oCMenu2.makeMenu('top5','','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="1" height="5" alt="" border="0"><br>&nbsp;&nbsp;<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/3orange_dots_gray.gif" width="8" height="8" alt="" border="0">&nbsp;Customer Support','http://idenphones.motorola.com/iden/support/support_home.jsp?language=en','','','25','','','','','','','','','')

		

/** BAR **/

	oCMenu2.makeMenu('bar6','','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer_wht.gif" width="210" height="2" alt="" border="0">','','','','1','','','','#cccccc','','','','','')



		

/** MENU ITEM TOP 6**/

oCMenu2.makeMenu('top6','','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="1" height="5" alt="" border="0"><br>&nbsp;&nbsp;<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/3orange_dots_gray.gif" width="8" height="8" alt="" border="0">&nbsp;Where to Buy','http://idenphones.motorola.com/idenProducts/common/where_to_buy.jsp','','','25','','','','','','','','','')



/** BAR **/

	oCMenu2.makeMenu('bar7','','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer_wht.gif" width="210" height="2" alt="" border="0">','','','','1','','','','#cccccc','','','','','')

			

/** BAR **/

	oCMenu2.makeMenu('heightbar1','','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/spacer.gif" width="210" height="200" alt="" border="0">','','','','250','','','','#cccccc','','','','','')



/**BAR 4**/		

	oCMenu2.makeMenu('menubottom','','<img src="//a248.e.akamai.net/f/248/5462/2h/www.digitalriver.com/v2.0-img/operations/motorol3/site/navlft_grf_bottom.gif" width="119" height="29" alt="" border="0">','','','','29','','','','#cccccc','','','','','')



oCMenu2.makeStyle(); 

oCMenu2.construct()

