var mmenus = new Array();
var misShow = new Boolean(); 
misShow=false;
var misdown = new Boolean();
misdown=false;
var msrcel; 
var mfromel; 
var mtoel; 
var musestatus=false;
var mthestatus="";
var mpopTimer = 0;
mmenucolor='#287DD2';mfontcolor='#FFFFFF';mmenuoutcolor='#009AFF';

mmenuincolor='#287DB0';mmenuoutbordercolor='#FFFFFF';mmenuinbordercolor='#287DD2';

mmidoutcolor='#343434';mmidincolor='#0099FF';mmenuovercolor='#FF0000';mitemedge='0';
msubedge='1';mmenuunitwidth=60;mmenuitemwidth=160;mmenuheight=22;mmenuwidth='773';
mmenuadjust=10;mmenuadjustV=0;mfonts='font-family: 宋体; font-size: 9pt; color: #FFFFFF; ';mcursor='default'; 

function stoperror(){
return true;
}
window.onerror=stoperror;
function mpopOut() {
mpopTimer = setTimeout('mallhide()', 500);
}
function getReal(el, type, value) {
temp = el;
while ((temp != null) && (temp.tagName != "BODY")) {
if (eval("temp." + type) == value) {
el = temp;
return el;
}
temp = temp.parentElement;
}
return el;
}


function mMenuRegister(menu) 
{
mmenus[mmenus.length] = menu
return (mmenus.length - 1)
}
function mMenuItem(caption,command,target,isline,statustxt,img,sizex,sizey,pos){
this.caption=caption;
this.command=command;
this.target=target;
this.isline=isline;
this.statustxt=statustxt;
this.img=img;
this.sizex=sizex;
this.sizey=sizey;
this.pos=pos;
}
function mMenu(caption,command,target,img,sizex,sizey,pos){
this.items = new Array();
this.caption=caption;
this.command=command;
this.target=target;
this.img=img;
this.sizex=sizex;
this.sizey=sizey;
this.pos=pos;
this.id=mMenuRegister(this);
}
function mMenuAddItem(item)
{
this.items[this.items.length] = item
item.parent = this.id;
this.children=true;
}

mMenu.prototype.addItem = mMenuAddItem;
function mtoout(src){

src.style.borderLeftColor=mmenuoutbordercolor;
src.style.borderRightColor=mmenuinbordercolor;
src.style.borderTopColor=mmenuoutbordercolor;
src.style.borderBottomColor=mmenuinbordercolor;
src.style.backgroundColor=mmenuoutcolor;
src.style.color=mmenuovercolor;
}
function mtoin(src){

src.style.borderLeftColor=mmenuinbordercolor;
src.style.borderRightColor=mmenuoutbordercolor;
src.style.borderTopColor=mmenuinbordercolor;
src.style.borderBottomColor=mmenuoutbordercolor;
src.style.backgroundColor=mmenuincolor;
src.style.color=mmenuovercolor;
}
function mnochange(src){
src.style.borderLeftColor=mmenucolor;
src.style.borderRightColor=mmenucolor;
src.style.borderTopColor=mmenucolor;
src.style.borderBottomColor=mmenucolor;
src.style.backgroundColor='';
src.style.color=mfontcolor;

}
function mallhide(){
for(var nummenu=0;nummenu<mmenus.length;nummenu++){
var themenu=document.all['mMenu'+nummenu]
var themenudiv=document.all['mmenudiv'+nummenu]
mnochange(themenu);
mmenuhide(themenudiv);
}
}
function mmenuhide(menuid){
menuid.style.filter='Alpha(Opacity=100)';
menuid.style.visibility='hidden';
misShow=false;
}
function mmenushow(menuid,pid){
menuid.style.filter='Alpha(Opacity=100)';
menuid.style.left=mposflag.offsetLeft+pid.offsetLeft+mmenuadjust;
menuid.style.top=mposflag.offsetTop+mmenutable.offsetHeight+mmenuadjustV+1;
if(mmenuitemwidth+parseInt(menuid.style.left)>document.body.clientWidth)
menuid.style.left=document.body.clientWidth-mmenuitemwidth;
menuid.style.visibility='visible';
misShow=true;
}
function mmenu_over(menuid,x){
mtoel = getReal(window.event.toElement, "className", "coolButton");
mfromel = getReal(window.event.fromElement, "className", "coolButton");
if (mtoel == mfromel) return;
msrcel = window.event.srcElement;
if(x<0){
misShow = false;
mallhide();
mtoout(msrcel);
}else{

mallhide();
mtoin(msrcel);
mmenushow(menuid,eval("mMenu"+x));
	if(document.getElementsByTagName('SELECT')!=null){
		for(i=0;i<document.getElementsByTagName('SELECT').length;i++){
			document.getElementsByTagName('SELECT')[i].style.visibility='hidden'
		}
	}

}
clearTimeout(mpopTimer);
}
function mmenu_out(menuid){
mtoel = getReal(window.event.toElement, "className", "coolButton");
mfromel = getReal(window.event.fromElement, "className", "coolButton");
if (mtoel == mfromel) return; 
msrcel = window.event.srcElement;
if (misShow){
mtoin(msrcel);
}else{
mnochange(msrcel);
}
mpopOut()
if(document.getElementsByTagName('SELECT')!=null){
	for(i=0;i<document.getElementsByTagName('SELECT').length;i++){
		document.getElementsByTagName('SELECT')[i].style.visibility='visible'
	}
}

}
function mmenu_down(menuid,x){
msrcel = getReal(window.event.srcElement, "className", "coolButton");
if(misShow){
mmenuhide(menuid);
mtoout(msrcel);
}
else{
mtoin(msrcel);
mmenushow(menuid,eval("mMenu"+x));
misdown=true;
}
}
function mmenu_up(){
misdown=false;
}
function mmenuitem_over(menuid){
msrcel = getReal(window.event.srcElement, "className", "coolButton");
if(document.getElementsByTagName('SELECT')!=null){
	for(i=0;i<document.getElementsByTagName('SELECT').length;i++){
		document.getElementsByTagName('SELECT')[i].style.visibility='hidden'
	}
}
if(misdown){
mtoin(msrcel);
}
else{
mtoout(msrcel);
}
if(mthestatus!=""){
musestatus=true;
window.status=mthestatus;
}
clearTimeout(mpopTimer);
}
function mmenuitem_out(menuid){
msrcel = getReal(window.event.srcElement, "className", "coolButton");
mnochange(msrcel);
if(document.getElementsByTagName('SELECT')!=null){
	for(i=0;i<document.getElementsByTagName('SELECT').length;i++){
		document.getElementsByTagName('SELECT')[i].style.visibility='visible'
	}
}

if(musestatus)window.status="";
mpopOut()
}
function mmenuitem_down(menuid){
msrcel = getReal(window.event.srcElement, "className", "coolButton");
mtoin(msrcel)
misdown=true;
}
function mmenuitem_up(menuid){
msrcel = getReal(window.event.srcElement, "className", "coolButton");
mtoout(msrcel)
misdown=false;
}
function mexec2(x){
var cmd;
if(mmenus[x].target=="blank"){
cmd = "window.open('"+mmenus[x].command+"')";
}else{
cmd = mmenus[x].target+".location='"+mmenus[x].command+"'";
}
eval(cmd);
}
function mexec(x,i){
var cmd;
if(mmenus[x].items[i].target=="blank"){
cmd = "window.open('"+mmenus[x].items[i].command+"')";
}else{
cmd = mmenus[x].items[i].target+".location='"+mmenus[x].items[i].command+"'";
}
eval(cmd);
}
function mbody_click(){

if (misShow){
msrcel = getReal(window.event.srcElement, "className", "coolButton");
for(var x=0;x<=mmenus.length;x++){
if(msrcel.id=="mMenu"+x)
return;
}
mallhide();
}
}
document.onclick=mbody_click;
var mMenuBodyRef;
function mwritetodocument(){
var mwb=1;
for(var i in document.all){
if (document.all[i].tagName == 'BODY'){
mMenuBodyRef = document.all[i]
var stringx='<div id="mposflag" style="position:absolute;"></div><table id=mmenutable border=0 cellpadding=0 cellspacing=2 width='+mmenuwidth+' height='+mmenuheight+' bgcolor='+mmenucolor+
' onselectstart="event.returnValue=false"'+
' style="filter:Alpha(Opacity=100);cursor:'+mcursor+';'+mfonts+
' border-left: '+mwb+'px solid '+mmenuoutbordercolor+';'+
' border-right: '+mwb+'px solid '+mmenuinbordercolor+'; '+
'border-top: '+mwb+'px solid '+mmenuoutbordercolor+'; '+
'border-bottom: '+mwb+'px solid '+mmenuinbordercolor+'; padding:0px"><tr>'
for(var x=0;x<mmenus.length;x++){
var thismenu=mmenus[x];
var imgsize;
if(thismenu.sizex=="0"&&thismenu.sizey=="0"){
imgsize="";
}else{
imgsize=" width="+thismenu.sizex+" height="+thismenu.sizey;
}
var ifspace;
if(thismenu.caption==""){
ifspace="";
}else{
ifspace=" ";
}
stringx += "<td class=coolButton id=mMenu"+x+" style='color: #FFFFFF;border: "+mitemedge+"px solid "+mmenucolor+
"' width="+mmenuunitwidth+"px onmouseover=mmenu_over(mmenudiv"+x+
","+x+") onmouseout=mmenu_out(mmenudiv"+x+
") onmousedown=mmenu_down(mmenudiv"+x+","+x+")";
if(thismenu.command!=""){
stringx += " onmouseup=mexec2("+x+");mmenu_up();";
}else{
stringx += " onmouseup=mmenu_up()";
}
if(thismenu.pos=="0"){
stringx += " align=center><img align=absmiddle src="+thismenu.img+imgsize+">"+ifspace+thismenu.caption+"</td>"; 
}else if(thismenu.pos=="1"){
stringx += " align=center>"+thismenu.caption+ifspace+"<img align=absmiddle src="+thismenu.img+imgsize+"></td>"; 
}else if(thismenu.pos=="2"){
stringx += " align=center background="+thismenu.img+">"+thismenu.caption+"</td>"; 
}else{
stringx += " align=center>"+thismenu.caption+"</td>";
}
stringx += "";
}
stringx+="<td width=*> </td></tr></table>";


for(var x=0;x<mmenus.length;x++){
thismenu=mmenus[x];
if(x<0){
stringx+='<div id=mmenudiv'+x+' style="visiable:none"></div>';
}else{
stringx+='<div id=mmenudiv'+x+
' style="filter:Alpha(Opacity=80);cursor:'+mcursor+';position:absolute;'+
'width:'+mmenuitemwidth+'px; z-index:'+(x+100);
if(mmenuinbordercolor!=mmenuoutbordercolor&&msubedge=="0"){
stringx+=';border-left: 1px solid '+mmidoutcolor+
';border-top: 1px solid '+mmidoutcolor;}
stringx+=';border-right: 1px solid '+mmenuinbordercolor+
';border-bottom: 1px solid '+mmenuinbordercolor+';visibility:hidden" onselectstart="event.returnValue=false">\n'+
'<table width="100%" border="0" height="100%" align="center" cellpadding="0" cellspacing="2" '+
'style="'+mfonts+' border-left: 1px solid '+mmenuoutbordercolor;
if(mmenuinbordercolor!=mmenuoutbordercolor&&msubedge=="0"){
stringx+=';border-right: 1px solid '+mmidincolor+
';border-bottom: 1px solid '+mmidincolor;}
stringx+=';border-top: 1px solid '+mmenuoutbordercolor+
';padding: 4px" bgcolor='+mmenucolor+'>\n'
for(var i=0;i<thismenu.items.length;i++){
var thismenuitem=thismenu.items[i];
var imgsize;
if(thismenuitem.sizex=="0"&&thismenuitem.sizey=="0"){
imgsize=""
}else{
imgsize=" width="+thismenuitem.sizex+" height="+thismenuitem.sizey
}
var ifspace;
if(thismenu.caption==""){
ifspace="";
}else{
ifspace=" ";
}
if(!thismenuitem.isline){
stringx += "<tr><td class=coolButton style='color: #FFFFFF;border: "+mitemedge+"px solid "+mmenucolor+
"' width=100% height=15px onmouseover=\"mthestatus='"+thismenuitem.statustxt+"';mmenuitem_over(mmenudiv"+x+
");\" onmouseout=mmenuitem_out(mmenudiv"+x+
") onmousedown=mmenuitem_down(mmenudiv"+x+") onmouseup=";
stringx += "mexec("+x+","+i+");mmenuitem_up(mmenudiv"+x+") ";
if(thismenuitem.pos=="0"){
stringx += "><img align=absmiddle src="+thismenuitem.img+imgsize+">"+ifspace+thismenuitem.caption+"</td></tr>"; 
}else if(thismenuitem.pos=="1"){
stringx += ">"+thismenuitem.caption+ifspace+"<img align=absmiddle src="+thismenuitem.img+imgsize+"></td></tr>"; 
}else if(thismenuitem.pos=="2"){
stringx += "background="+thismenuitem.img+">"+thismenuitem.caption+"</td></tr>"; 
}else{
stringx += ">"+thismenuitem.caption+"</td></tr>";
}
}else{
stringx+='<tr><td height="1" background="hr.gif"><img border="0" src="none.gif" width="1" height="1"></td></tr>\n';
}
}stringx+='</table>\n</div>'
}

}

document.write("<div align='left'>"+stringx+"</div>");
break
}
}
}
function document_load(){
	mwritetodocument();
}
mpmenu1=new mMenu('数码','','self','','','','');
		mpmenu1.addItem(new mMenuItem('数码相机','/products/productlist,15,0,0,0,,1.html','self',false,'数码相机','','','',''));
		mpmenu1.addItem(new mMenuItem('数码摄像机','/products/productlist,70,0,0,0,,1.html','self',false,'数码摄像机','','','',''));
		mpmenu1.addItem(new mMenuItem('掌上电脑','/products/productlist,38,0,0,0,,1.html','self',false,'掌上电脑','','','',''));
		mpmenu1.addItem(new mMenuItem('MP3播放器','/products/productlist,19,0,0,0,,1.html','self',false,'MP3播放器','','','',''));
		mpmenu1.addItem(new mMenuItem('摄像头','/products/productlist,60,0,0,0,,1.html','self',false,'摄像头','','','',''));
		mpmenu1.addItem(new mMenuItem('MP4播放器','/products/productlist,144,0,0,0,,1.html','self',false,'MP4播放器','','','',''));
		mpmenu1.addItem(new mMenuItem('CD机','/products/productlist,133,0,0,0,,1.html','self',false,'CD机','','','',''));
		mpmenu1.addItem(new mMenuItem('数码相机伴侣','/products/productlist,113,0,0,0,,1.html','self',false,'数码相机伴侣','','','',''));
		mpmenu1.addItem(new mMenuItem('便携式DVD','/products/productlist,189,0,0,0,,1.html','self',false,'便携式DVD','','','',''));
		mpmenu1.addItem(new mMenuItem('DVD视频刻录机','/products/productlist,207,0,0,0,,1.html','self',false,'DVD视频刻录机','','','',''));
		mpmenu1.addItem(new mMenuItem('数码录音笔','/products/productlist,68,0,0,0,,1.html','self',false,'数码录音笔','','','',''));
		mpmenu1.addItem(new mMenuItem('电子辞典/学习机','/products/productlist,122,0,0,0,,1.html','self',false,'电子辞典/学习机','','','',''));
		mpmenu1.addItem(new mMenuItem('MD播放器','/products/productlist,71,0,0,0,,1.html','self',false,'MD播放器','','','',''));
		mpmenu1.addItem(new mMenuItem('电池','/products/productlist,114,0,0,0,,1.html','self',false,'电池','','','',''));
		mpmenu1.addItem(new mMenuItem('数码配件','/products/productlist,226,0,0,0,,1.html','self',false,'数码配件','','','',''));
		mpmenu1.addItem(new mMenuItem('其它','/products/productlist,24,0,0,0,,1.html','self',false,'其它','','','',''));
mpmenu2=new mMenu('整机','','self','','','','');
		mpmenu2.addItem(new mMenuItem('笔记本电脑','/products/productlist,16,0,0,0,,1.html','self',false,'笔记本电脑','','','',''));
		mpmenu2.addItem(new mMenuItem('单机多用户','/products/productlist,194,0,0,0,,1.html','self',false,'单机多用户','','','',''));
		mpmenu2.addItem(new mMenuItem('服务器','/products/productlist,31,0,0,0,,1.html','self',false,'服务器','','','',''));
		mpmenu2.addItem(new mMenuItem('工控产品','/products/productlist,153,0,0,0,,1.html','self',false,'工控产品','','','',''));
		mpmenu2.addItem(new mMenuItem('工作站','/products/productlist,51,0,0,0,,1.html','self',false,'工作站','','','',''));
		mpmenu2.addItem(new mMenuItem('平板电脑','/products/productlist,81,0,0,0,,1.html','self',false,'平板电脑','','','',''));
		mpmenu2.addItem(new mMenuItem('台式机','/products/productlist,27,0,0,0,,1.html','self',false,'台式机','','','',''));
		mpmenu2.addItem(new mMenuItem('小型机','/products/productlist,132,0,0,0,,1.html','self',false,'小型机','','','',''));
		mpmenu2.addItem(new mMenuItem('移动PC','/products/productlist,69,0,0,0,,1.html','self',false,'移动PC','','','',''));
		mpmenu2.addItem(new mMenuItem('准系统','/products/productlist,89,0,0,0,,1.html','self',false,'准系统','','','',''));
mpmenu3=new mMenu('通讯','','self','','','','');
		mpmenu3.addItem(new mMenuItem('手机','/products/productlist,57,0,0,0,,1.html','self',false,'手机','','','',''));
		mpmenu3.addItem(new mMenuItem('电话机','/products/productlist,75,0,0,0,,1.html','self',false,'电话机','','','',''));
		mpmenu3.addItem(new mMenuItem('集团电话','/products/productlist,124,0,0,0,,1.html','self',false,'集团电话','','','',''));
		mpmenu3.addItem(new mMenuItem('程控交换机','/products/productlist,131,0,0,0,,1.html','self',false,'程控交换机','','','',''));
		mpmenu3.addItem(new mMenuItem('对讲机','/products/productlist,74,0,0,0,,1.html','self',false,'对讲机','','','',''));
		mpmenu3.addItem(new mMenuItem('会议电话','/products/productlist,198,0,0,0,,1.html','self',false,'会议电话','','','',''));
		mpmenu3.addItem(new mMenuItem('GPS设备','/products/productlist,123,0,0,0,,1.html','self',false,'GPS设备','','','',''));
		mpmenu3.addItem(new mMenuItem('蓝牙耳机','/products/productlist,202,0,0,0,,1.html','self',false,'蓝牙耳机','','','',''));
		mpmenu3.addItem(new mMenuItem('VoIP网关','/products/productlist,125,0,0,0,,1.html','self',false,'VoIP网关','','','',''));
		mpmenu3.addItem(new mMenuItem('手机配件','/products/productlist,211,0,0,0,,1.html','self',false,'手机配件','','','',''));
mpmenu4=new mMenu('外设','','self','','','','');
		mpmenu4.addItem(new mMenuItem('触控一体机','/products/productlist,197,0,0,0,,1.html','self',false,'触控一体机','','','',''));
		mpmenu4.addItem(new mMenuItem('触摸屏','/products/productlist,195,0,0,0,,1.html','self',false,'触摸屏','','','',''));
		mpmenu4.addItem(new mMenuItem('手写绘图输入','/products/productlist,116,0,0,0,,1.html','self',false,'手写绘图输入','','','',''));
		mpmenu4.addItem(new mMenuItem('音箱','/products/productlist,34,0,0,0,,1.html','self',false,'音箱','','','',''));
		mpmenu4.addItem(new mMenuItem('耳机','/products/productlist,76,0,0,0,,1.html','self',false,'耳机','','','',''));
		mpmenu4.addItem(new mMenuItem('UPS电源','/products/productlist,18,0,0,0,,1.html','self',false,'UPS电源','','','',''));
		mpmenu4.addItem(new mMenuItem('磁带机','/products/productlist,155,0,0,0,,1.html','self',false,'磁带机','','','',''));
		mpmenu4.addItem(new mMenuItem('磁带库','/products/productlist,184,0,0,0,,1.html','self',false,'磁带库','','','',''));
		mpmenu4.addItem(new mMenuItem('指纹读取器','/products/productlist,208,0,0,0,,1.html','self',false,'指纹读取器','','','',''));
		mpmenu4.addItem(new mMenuItem('软件加密','/products/productlist,209,0,0,0,,1.html','self',false,'软件加密','','','',''));
mpmenu5=new mMenu('网络','','self','','','','');
		mpmenu5.addItem(new mMenuItem('路由器','/products/productlist,44,0,0,0,,1.html','self',false,'路由器','','','',''));
		mpmenu5.addItem(new mMenuItem('网络交换机','/products/productlist,46,0,0,0,,1.html','self',false,'网络交换机','','','',''));
		mpmenu5.addItem(new mMenuItem('网卡','/products/productlist,42,0,0,0,,1.html','self',false,'网卡','','','',''));
		mpmenu5.addItem(new mMenuItem('防火墙','/products/productlist,142,0,0,0,,1.html','self',false,'防火墙','','','',''));
		mpmenu5.addItem(new mMenuItem('XDSL','/products/productlist,85,0,0,0,,1.html','self',false,'XDSL','','','',''));
		mpmenu5.addItem(new mMenuItem('打印服务器','/products/productlist,215,0,0,0,,1.html','self',false,'打印服务器','','','',''));
		mpmenu5.addItem(new mMenuItem('机顶盒','/products/productlist,43,0,0,0,,1.html','self',false,'机顶盒','','','',''));
		mpmenu5.addItem(new mMenuItem('光纤设备','/products/productlist,148,0,0,0,,1.html','self',false,'光纤设备','','','',''));
		mpmenu5.addItem(new mMenuItem('光纤线缆','/products/productlist,150,0,0,0,,1.html','self',false,'光纤线缆','','','',''));
		mpmenu5.addItem(new mMenuItem('综合布线设备','/products/productlist,149,0,0,0,,1.html','self',false,'综合布线设备','','','',''));
		mpmenu5.addItem(new mMenuItem('电缆与双绞线','/products/productlist,151,0,0,0,,1.html','self',false,'电缆与双绞线','','','',''));
		mpmenu5.addItem(new mMenuItem('测试仪','/products/productlist,152,0,0,0,,1.html','self',false,'测试仪','','','',''));
		mpmenu5.addItem(new mMenuItem('VPN设备','/products/productlist,158,0,0,0,,1.html','self',false,'VPN设备','','','',''));
		mpmenu5.addItem(new mMenuItem('磁盘阵列','/products/productlist,183,0,0,0,,1.html','self',false,'磁盘阵列','','','',''));
		mpmenu5.addItem(new mMenuItem('模块接口卡','/products/productlist,191,0,0,0,,1.html','self',false,'模块接口卡','','','',''));
		mpmenu5.addItem(new mMenuItem('转换器','/products/productlist,200,0,0,0,,1.html','self',false,'转换器','','','',''));
		mpmenu5.addItem(new mMenuItem('集线器','/products/productlist,45,0,0,0,,1.html','self',false,'集线器','','','',''));
		mpmenu5.addItem(new mMenuItem('ISDN','/products/productlist,39,0,0,0,,1.html','self',false,'ISDN','','','',''));
		mpmenu5.addItem(new mMenuItem('Modem','/products/productlist,30,0,0,0,,1.html','self',false,'Modem','','','',''));
		mpmenu5.addItem(new mMenuItem('KVM切换器','/products/productlist,186,0,0,0,,1.html','self',false,'KVM切换器','','','',''));
		mpmenu5.addItem(new mMenuItem('终端服务器','/products/productlist,205,0,0,0,,1.html','self',false,'终端服务器','','','',''));
		mpmenu5.addItem(new mMenuItem('网络存储器','/products/productlist,77,0,0,0,,1.html','self',false,'网络存储器','','','',''));
		mpmenu5.addItem(new mMenuItem('收发器','/products/productlist,213,0,0,0,,1.html','self',false,'收发器','','','',''));
mpmenu6=new mMenu('无线','','self','','','','');
		mpmenu6.addItem(new mMenuItem('无线局域网','/products/productlist,90,0,0,0,,1.html','self',false,'无线局域网','','','',''));
		mpmenu6.addItem(new mMenuItem('无线路由器','/products/productlist,96,0,0,0,,1.html','self',false,'无线路由器','','','',''));
		mpmenu6.addItem(new mMenuItem('无线上网卡','/products/productlist,92,0,0,0,,1.html','self',false,'无线上网卡','','','',''));
		mpmenu6.addItem(new mMenuItem('蓝牙适配器','/products/productlist,91,0,0,0,,1.html','self',false,'蓝牙适配器','','','',''));
		mpmenu6.addItem(new mMenuItem('天馈系统','/products/productlist,93,0,0,0,,1.html','self',false,'天馈系统','','','',''));
		mpmenu6.addItem(new mMenuItem('无线视频','/products/productlist,95,0,0,0,,1.html','self',false,'无线视频','','','',''));
		mpmenu6.addItem(new mMenuItem('无线安全','/products/productlist,97,0,0,0,,1.html','self',false,'无线安全','','','',''));
mpmenu7=new mMenu('办公','','self','','','','');
		mpmenu7.addItem(new mMenuItem('喷墨打印机','/products/productlist,11,0,0,0,,1.html','self',false,'喷墨打印机','','','',''));
		mpmenu7.addItem(new mMenuItem('激光打印机','/products/productlist,87,0,0,0,,1.html','self',false,'激光打印机','','','',''));
		mpmenu7.addItem(new mMenuItem('多功能一体机','/products/productlist,118,0,0,0,,1.html','self',false,'多功能一体机','','','',''));
		mpmenu7.addItem(new mMenuItem('投影机','/products/productlist,126,0,0,0,,1.html','self',false,'投影机','','','',''));
		mpmenu7.addItem(new mMenuItem('传真机','/products/productlist,127,0,0,0,,1.html','self',false,'传真机','','','',''));
		mpmenu7.addItem(new mMenuItem('大幅打印机','/products/productlist,204,0,0,0,,1.html','self',false,'大幅打印机','','','',''));
		mpmenu7.addItem(new mMenuItem('复印机','/products/productlist,147,0,0,0,,1.html','self',false,'复印机','','','',''));
		mpmenu7.addItem(new mMenuItem('扫描仪','/products/productlist,12,0,0,0,,1.html','self',false,'扫描仪','','','',''));
		mpmenu7.addItem(new mMenuItem('票据打印机','/products/productlist,192,0,0,0,,1.html','self',false,'票据打印机','','','',''));
		mpmenu7.addItem(new mMenuItem('展示台','/products/productlist,203,0,0,0,,1.html','self',false,'展示台','','','',''));
		mpmenu7.addItem(new mMenuItem('一体化速印机','/products/productlist,143,0,0,0,,1.html','self',false,'一体化速印机','','','',''));
		mpmenu7.addItem(new mMenuItem('投影屏幕','/products/productlist,154,0,0,0,,1.html','self',false,'投影屏幕','','','',''));
		mpmenu7.addItem(new mMenuItem('电教板','/products/productlist,145,0,0,0,,1.html','self',false,'电教板','','','',''));
		mpmenu7.addItem(new mMenuItem('电子白板','/products/productlist,129,0,0,0,,1.html','self',false,'电子白板','','','',''));
		mpmenu7.addItem(new mMenuItem('装订机','/products/productlist,130,0,0,0,,1.html','self',false,'装订机','','','',''));
		mpmenu7.addItem(new mMenuItem('光盘拷贝机','/products/productlist,146,0,0,0,,1.html','self',false,'光盘拷贝机','','','',''));
		mpmenu7.addItem(new mMenuItem('碎纸机','/products/productlist,128,0,0,0,,1.html','self',false,'碎纸机','','','',''));
		mpmenu7.addItem(new mMenuItem('排队机','/products/productlist,217,0,0,0,,1.html','self',false,'排队机','','','',''));
		mpmenu7.addItem(new mMenuItem('考勤门禁收费','/products/productlist,220,0,0,0,,1.html','self',false,'考勤门禁收费','','','',''));
		mpmenu7.addItem(new mMenuItem('印后设备','/products/productlist,221,0,0,0,,1.html','self',false,'印后设备','','','',''));
		mpmenu7.addItem(new mMenuItem('冷裱机','/products/productlist,222,0,0,0,,1.html','self',false,'冷裱机','','','',''));
		mpmenu7.addItem(new mMenuItem('切纸机','/products/productlist,223,0,0,0,,1.html','self',false,'切纸机','','','',''));
		mpmenu7.addItem(new mMenuItem('覆膜机','/products/productlist,224,0,0,0,,1.html','self',false,'覆膜机','','','',''));
		mpmenu7.addItem(new mMenuItem('塑封机','/products/productlist,225,0,0,0,,1.html','self',false,'塑封机','','','',''));
		mpmenu7.addItem(new mMenuItem('条码设备','/products/productlist,233,0,0,0,,1.html','self',false,'条码设备','','','',''));
mpmenu8=new mMenu('显示','','self','','','','');
		mpmenu8.addItem(new mMenuItem('等离子','/products/productlist,193,0,0,0,,1.html','self',false,'等离子','','','',''));
		mpmenu8.addItem(new mMenuItem('液晶电视','/products/productlist,141,0,0,0,,1.html','self',false,'液晶电视','','','',''));
		mpmenu8.addItem(new mMenuItem('CRT显示器','/products/productlist,8,0,0,0,,1.html','self',false,'CRT显示器','','','',''));
		mpmenu8.addItem(new mMenuItem('液晶显示器','/products/productlist,84,0,0,0,,1.html','self',false,'液晶显示器','','','',''));
		mpmenu8.addItem(new mMenuItem('车载显示设备','/products/productlist,227,0,0,0,,1.html','self',false,'车载显示设备','','','',''));
mpmenu9=new mMenu('配件','','self','','','','');
		mpmenu9.addItem(new mMenuItem('CPU','/products/productlist,28,0,0,0,,1.html','self',false,'CPU','','','',''));
		mpmenu9.addItem(new mMenuItem('内存','/products/productlist,3,0,0,0,,1.html','self',false,'内存','','','',''));
		mpmenu9.addItem(new mMenuItem('主板','/products/productlist,5,0,0,0,,1.html','self',false,'主板','','','',''));
		mpmenu9.addItem(new mMenuItem('硬盘','/products/productlist,2,0,0,0,,1.html','self',false,'硬盘','','','',''));
		mpmenu9.addItem(new mMenuItem('显卡','/products/productlist,6,0,0,0,,1.html','self',false,'显卡','','','',''));
		mpmenu9.addItem(new mMenuItem('散热器','/products/productlist,67,0,0,0,,1.html','self',false,'散热器','','','',''));
		mpmenu9.addItem(new mMenuItem('机箱','/products/productlist,10,0,0,0,,1.html','self',false,'机箱','','','',''));
		mpmenu9.addItem(new mMenuItem('电源','/products/productlist,35,0,0,0,,1.html','self',false,'电源','','','',''));
		mpmenu9.addItem(new mMenuItem('CD-ROM','/products/productlist,9,0,0,0,,1.html','self',false,'CD-ROM','','','',''));
		mpmenu9.addItem(new mMenuItem('DVD-ROM','/products/productlist,66,0,0,0,,1.html','self',false,'DVD-ROM','','','',''));
		mpmenu9.addItem(new mMenuItem('COMBO','/products/productlist,78,0,0,0,,1.html','self',false,'COMBO','','','',''));
		mpmenu9.addItem(new mMenuItem('刻录机','/products/productlist,29,0,0,0,,1.html','self',false,'刻录机','','','',''));
		mpmenu9.addItem(new mMenuItem('光驱盒','/products/productlist,201,0,0,0,,1.html','self',false,'光驱盒','','','',''));
		mpmenu9.addItem(new mMenuItem('软驱','/products/productlist,23,0,0,0,,1.html','self',false,'软驱','','','',''));
		mpmenu9.addItem(new mMenuItem('键盘','/products/productlist,33,0,0,0,,1.html','self',false,'键盘','','','',''));
		mpmenu9.addItem(new mMenuItem('鼠标','/products/productlist,32,0,0,0,,1.html','self',false,'鼠标','','','',''));
		mpmenu9.addItem(new mMenuItem('声卡','/products/productlist,7,0,0,0,,1.html','self',false,'声卡','','','',''));
		mpmenu9.addItem(new mMenuItem('转接卡','/products/productlist,62,0,0,0,,1.html','self',false,'转接卡','','','',''));
		mpmenu9.addItem(new mMenuItem('硬盘保护卡','/products/productlist,79,0,0,0,,1.html','self',false,'硬盘保护卡','','','',''));
		mpmenu9.addItem(new mMenuItem('笔记本配件','/products/productlist,119,0,0,0,,1.html','self',false,'笔记本配件','','','',''));
		mpmenu9.addItem(new mMenuItem('SCSI卡','/products/productlist,40,0,0,0,,1.html','self',false,'SCSI卡','','','',''));
		mpmenu9.addItem(new mMenuItem('RAID卡','/products/productlist,63,0,0,0,,1.html','self',false,'RAID卡','','','',''));
		mpmenu9.addItem(new mMenuItem('SCSI硬盘','/products/productlist,117,0,0,0,,1.html','self',false,'SCSI硬盘','','','',''));
		mpmenu9.addItem(new mMenuItem('服务器配件','/products/productlist,120,0,0,0,,1.html','self',false,'服务器配件','','','',''));
		mpmenu9.addItem(new mMenuItem('电脑锁','/products/productlist,206,0,0,0,,1.html','self',false,'电脑锁','','','',''));
		mpmenu9.addItem(new mMenuItem('车载逆变器','/products/productlist,214,0,0,0,,1.html','self',false,'车载逆变器','','','',''));
mpmenu10=new mMenu('移动存储','','self','','','','');
		mpmenu10.addItem(new mMenuItem('MO磁光盘机','/products/productlist,83,0,0,0,,1.html','self',false,'MO磁光盘机','','','',''));
		mpmenu10.addItem(new mMenuItem('便携存储器','/products/productlist,37,0,0,0,,1.html','self',false,'便携存储器','','','',''));
		mpmenu10.addItem(new mMenuItem('读卡器','/products/productlist,156,0,0,0,,1.html','self',false,'读卡器','','','',''));
		mpmenu10.addItem(new mMenuItem('闪存卡','/products/productlist,54,0,0,0,,1.html','self',false,'闪存卡','','','',''));
		mpmenu10.addItem(new mMenuItem('移动硬盘','/products/productlist,88,0,0,0,,1.html','self',false,'移动硬盘','','','',''));
		mpmenu10.addItem(new mMenuItem('硬盘盒','/products/productlist,80,0,0,0,,1.html','self',false,'硬盘盒','','','',''));
mpmenu11=new mMenu(' 语音视频','','self','','','','');
		mpmenu11.addItem(new mMenuItem('多媒体视频','/products/productlist,121,0,0,0,,1.html','self',false,'多媒体视频','','','',''));
		mpmenu11.addItem(new mMenuItem('安防监控','/products/productlist,157,0,0,0,,1.html','self',false,'安防监控','','','',''));
		mpmenu11.addItem(new mMenuItem('矩阵切换器','/products/productlist,187,0,0,0,,1.html','self',false,'矩阵切换器','','','',''));
		mpmenu11.addItem(new mMenuItem('数字语音室','/products/productlist,228,0,0,0,,1.html','self',false,'数字语音室','','','',''));
		mpmenu11.addItem(new mMenuItem('数码讲台手写屏','/products/productlist,229,0,0,0,,1.html','self',false,'数码讲台手写屏','','','',''));
		mpmenu11.addItem(new mMenuItem('电子讲台及课桌','/products/productlist,230,0,0,0,,1.html','self',false,'电子讲台及课桌','','','',''));
		mpmenu11.addItem(new mMenuItem('中央控制系统','/products/productlist,231,0,0,0,,1.html','self',false,'中央控制系统','','','',''));
		mpmenu11.addItem(new mMenuItem('视频会议','/products/productlist,234,0,0,0,,1.html','self',false,'视频会议','','','',''));
		mpmenu11.addItem(new mMenuItem('网络摄像机','/products/productlist,235,0,0,0,,1.html','self',false,'网络摄像机','','','',''));
mpmenu12=new mMenu('软件','','self','','','','');
		mpmenu12.addItem(new mMenuItem('安防软件','/products/productlist,110,0,0,0,,1.html','self',false,'安防软件','','','',''));
		mpmenu12.addItem(new mMenuItem('办公软件','/products/productlist,102,0,0,0,,1.html','self',false,'办公软件','','','',''));
		mpmenu12.addItem(new mMenuItem('财务及管理软件','/products/productlist,106,0,0,0,,1.html','self',false,'财务及管理软件','','','',''));
		mpmenu12.addItem(new mMenuItem('操作系统','/products/productlist,105,0,0,0,,1.html','self',false,'操作系统','','','',''));
		mpmenu12.addItem(new mMenuItem('多媒体软件','/products/productlist,101,0,0,0,,1.html','self',false,'多媒体软件','','','',''));
		mpmenu12.addItem(new mMenuItem('教学软件','/products/productlist,104,0,0,0,,1.html','self',false,'教学软件','','','',''));
		mpmenu12.addItem(new mMenuItem('开发软件','/products/productlist,107,0,0,0,,1.html','self',false,'开发软件','','','',''));
		mpmenu12.addItem(new mMenuItem('排版软件','/products/productlist,99,0,0,0,,1.html','self',false,'排版软件','','','',''));
		mpmenu12.addItem(new mMenuItem('杀毒软件','/products/productlist,103,0,0,0,,1.html','self',false,'杀毒软件','','','',''));
		mpmenu12.addItem(new mMenuItem('数据库软件','/products/productlist,108,0,0,0,,1.html','self',false,'数据库软件','','','',''));
		mpmenu12.addItem(new mMenuItem('数据维护软件','/products/productlist,232,0,0,0,,1.html','self',false,'数据维护软件','','','',''));
		mpmenu12.addItem(new mMenuItem('双机容错与集群','/products/productlist,219,0,0,0,,1.html','self',false,'双机容错与集群','','','',''));
		mpmenu12.addItem(new mMenuItem('图像软件','/products/productlist,98,0,0,0,,1.html','self',false,'图像软件','','','',''));
		mpmenu12.addItem(new mMenuItem('网管及备份软件','/products/productlist,218,0,0,0,,1.html','self',false,'网管及备份软件','','','',''));
		mpmenu12.addItem(new mMenuItem('网络软件','/products/productlist,109,0,0,0,,1.html','self',false,'网络软件','','','',''));
		mpmenu12.addItem(new mMenuItem('网页制作','/products/productlist,100,0,0,0,,1.html','self',false,'网页制作','','','',''));
mpmenu13=new mMenu('耗材','','self','','','','');
		mpmenu13.addItem(new mMenuItem('磁带','/products/productlist,56,0,0,0,,1.html','self',false,'磁带','','','',''));
		mpmenu13.addItem(new mMenuItem('打印介质','/products/productlist,48,0,0,0,,1.html','self',false,'打印介质','','','',''));
		mpmenu13.addItem(new mMenuItem('光盘片','/products/productlist,53,0,0,0,,1.html','self',false,'光盘片','','','',''));
		mpmenu13.addItem(new mMenuItem('墨粉','/products/productlist,49,0,0,0,,1.html','self',false,'墨粉','','','',''));
		mpmenu13.addItem(new mMenuItem('墨盒','/products/productlist,22,0,0,0,,1.html','self',false,'墨盒','','','',''));
		mpmenu13.addItem(new mMenuItem('墨水','/products/productlist,190,0,0,0,,1.html','self',false,'墨水','','','',''));
		mpmenu13.addItem(new mMenuItem('其他','/products/productlist,212,0,0,0,,1.html','self',false,'其他','','','',''));
		mpmenu13.addItem(new mMenuItem('软盘','/products/productlist,55,0,0,0,,1.html','self',false,'软盘','','','',''));
		mpmenu13.addItem(new mMenuItem('色带','/products/productlist,50,0,0,0,,1.html','self',false,'色带','','','',''));
		mpmenu13.addItem(new mMenuItem('硒鼓','/products/productlist,52,0,0,0,,1.html','self',false,'硒鼓','','','',''));
		mpmenu13.addItem(new mMenuItem('纸张','/products/productlist,210,0,0,0,,1.html','self',false,'纸张','','','',''));
mpmenu14=new mMenu('游戏','','self','','','','');
		mpmenu14.addItem(new mMenuItem('跳舞毯','/products/productlist,59,0,0,0,,1.html','self',false,'跳舞毯','','','',''));
		mpmenu14.addItem(new mMenuItem('游戏机','/products/productlist,58,0,0,0,,1.html','self',false,'游戏机','','','',''));
		mpmenu14.addItem(new mMenuItem('游戏设备','/products/productlist,41,0,0,0,,1.html','self',false,'游戏设备','','','',''));
mpmenu15=new mMenu('摄影器材','','self','','','','');
		mpmenu15.addItem(new mMenuItem('单反相机','/products/productlist,163,0,0,0,,1.html','self',false,'单反相机','','','',''));
		mpmenu15.addItem(new mMenuItem('轻便相机','/products/productlist,164,0,0,0,,1.html','self',false,'轻便相机','','','',''));
		mpmenu15.addItem(new mMenuItem('镜头','/products/productlist,115,0,0,0,,1.html','self',false,'镜头','','','',''));
		mpmenu15.addItem(new mMenuItem('闪光灯','/products/productlist,169,0,0,0,,1.html','self',false,'闪光灯','','','',''));
		mpmenu15.addItem(new mMenuItem('测光表','/products/productlist,174,0,0,0,,1.html','self',false,'测光表','','','',''));
		mpmenu15.addItem(new mMenuItem('单反附件','/products/productlist,185,0,0,0,,1.html','self',false,'单反附件','','','',''));
		mpmenu15.addItem(new mMenuItem('数码附件','/products/productlist,73,0,0,0,,1.html','self',false,'数码附件','','','',''));
		mpmenu15.addItem(new mMenuItem('三脚架','/products/productlist,178,0,0,0,,1.html','self',false,'三脚架','','','',''));
		mpmenu15.addItem(new mMenuItem('独脚架','/products/productlist,179,0,0,0,,1.html','self',false,'独脚架','','','',''));
		mpmenu15.addItem(new mMenuItem('云台及附件','/products/productlist,180,0,0,0,,1.html','self',false,'云台及附件','','','',''));
		mpmenu15.addItem(new mMenuItem('摄影包','/products/productlist,181,0,0,0,,1.html','self',false,'摄影包','','','',''));
		mpmenu15.addItem(new mMenuItem('高坚效果镜','/products/productlist,176,0,0,0,,1.html','self',false,'高坚效果镜','','','',''));
