2단메뉴 오류문제 정보
2단메뉴 오류문제본문
오류가 나는곳의 주소를 알려주시면 더 빠르고 정확하게 답변 받을 수 있습니다.
오류 주소 : http://www.gsfnc.com/preview/?dgnset_id=4699
좌측메뉴를 보시면 몇가지 문제가 있습니다.
1. 2단 서브메뉴가 몇초뒤에 마우스오버가 되있는데도 사라지는 현상
2. 2단 서브메뉴의 제목(회색두꺼운)부분이 처음부터 빨강색개통으로 보여져야 하는데
회색으로 보이고 마우스커서가 한번 지나가야 빨강색으로 바뀝니다.
초보라서 어디가 잘못된건지 모르겠어요 ㅠㅠ 도와주세욥
<script type="text/javascript">
var timeBeforeAutoHide = 790; // Microseconds to wait before auto hiding menu(1000 = 1 second)
var slideSpeed_out = 45; // Steps to move sub menu at a time ( higher = faster)
var slideSpeed_in = 35;
var slideTimeout_out = 25; // Microseconds between slide steps ( lower = faster)
var slideTimeout_in = 10; // Microseconds between slide steps ( lower = faster)
var showSubOnMouseOver = true; // false = show sub menu on click, true = show sub menu on mouse over
var fixedSubMenuWidth = false; // Width of sub menu items - A number(width in pixels) or false when width should be dynamic
var xOffsetSubMenu = 0; // Offset x-position of sub menu items - use negative value if you want the sub menu to overlap main menu
var slideDirection = 'right'; // Slide to left or right ?
/* Don't change anything below here */
var activeSubMenuId = false;
var activeMainMenuItem = false;
var currentZIndex = 3000;
var autoHideTimer = 0;
var submenuObjArray = new Array();
var okToSlideInSub = new Array();
var subPositioned = new Array();
function stopAutoHide()
{
autoHideTimer = -1;
}
function initAutoHide()
{
autoHideTimer = 0;
if(autoHideTimer>=0)autoHide();
}
function autoHide()
{
if(autoHideTimer>timeBeforeAutoHide)
{
if(activeMainMenuItem){
activeMainMenuItem.className='';
activeMainMenuItem = false;
}
if(activeSubMenuId){
var obj = document.getElementById('subMenuDiv' + activeSubMenuId);
showSub();
}
}else{
if(autoHideTimer>=0){
autoHideTimer+=50;
setTimeout('autoHide()',50);
}
}
}
function getTopPos(inputObj)
{
var returnValue = inputObj.offsetTop;
while((inputObj = inputObj.offsetParent) != null)returnValue += inputObj.offsetTop;
return returnValue;
}
function getLeftPos(inputObj)
{
var returnValue = inputObj.offsetLeft;
while((inputObj = inputObj.offsetParent) != null)returnValue += inputObj.offsetLeft;
return returnValue;
}
function showSub()
{
var subObj = false;
if(this && this.tagName){
var numericId = this.parentNode.id.replace(/[^0-9]/g,'');
okToSlideInSub[numericId] = false;
var subObj = document.getElementById('subMenuDiv' + numericId);
if(activeMainMenuItem)activeMainMenuItem.className='';
if(subObj){
if(!subPositioned[numericId]){
if(slideDirection=='right'){
subObj.style.left = getLeftPos(submenuObjArray[numericId]['parentDiv']) + submenuObjArray[numericId]['parentDiv'].offsetWidth + xOffsetSubMenu + 'px';
}else{
subObj.style.left = getLeftPos(submenuObjArray[numericId]['parentDiv']) + xOffsetSubMenu + 'px';
}
submenuObjArray[numericId]['left'] = subObj.style.left.replace(/[^0-9]/g,'');
subObj.style.top = getTopPos(submenuObjArray[numericId]['parentDiv']) + 'px';
subPositioned[numericId] = true;
}
subObj.style.visibility = 'visible';
subObj.style.zIndex = currentZIndex;
currentZIndex++;
this.className='activeMainMenuItem';
activeMainMenuItem = this;
}
}else{
var numericId = activeSubMenuId;
}
if(activeSubMenuId && (numericId!=activeSubMenuId || !subObj))slideMenu(activeSubMenuId,(slideSpeed_in*-10));
if(numericId!=activeSubMenuId && this && subObj){
subObj.style.width = '0px';
slideMenu(numericId,slideSpeed_out);
activeSubMenuId = numericId;
}else{
if(numericId!=activeSubMenuId)activeSubMenuId = false;
}
if(showSubOnMouseOver)stopAutoHide();
}
function slideMenu(menuIndex,speed){
var obj = submenuObjArray[menuIndex]['divObj'];
var obj2 = submenuObjArray[menuIndex]['ulObj'];
var width = obj.offsetWidth + speed;
if(speed<0){
if(width<0)width = 0;
obj.style.width = width + 'px';
if(slideDirection=='left'){
obj.style.left = submenuObjArray[menuIndex]['left'] - width + 'px';
obj2.style.left = '0px';
}else{
obj2.style.left = width - submenuObjArray[menuIndex]['width'] + 'px'
}
if(width>0 && okToSlideInSub[menuIndex])setTimeout('slideMenu(' + menuIndex + ',' + speed + ')',slideTimeout_in); else{
obj.style.visibility = 'hidden';
obj.style.width = '0px';
if(activeSubMenuId==menuIndex)activeSubMenuId=false;
}
}else{
if(width>submenuObjArray[menuIndex]['width'])width = submenuObjArray[menuIndex]['width'];
if(slideDirection=='left'){
obj.style.left = submenuObjArray[menuIndex]['left'] - width + 'px';
obj2.style.left = '0px';
}else{
obj2.style.left = width - submenuObjArray[menuIndex]['width'] + 'px'
}
obj.style.width = width + 'px';
if(width<submenuObjArray[menuIndex]['width']){
setTimeout('slideMenu(' + menuIndex + ',' + speed + ')',slideTimeout_out);
}else{
okToSlideInSub[menuIndex] = true;
}
}
}
function resetPosition()
{
subPositioned.length = 0;
}
function initLeftMenu()
{
var isMSIE = navigator.userAgent.indexOf('MSIE')>=0?true:false;
var browserVersion = parseInt(navigator.userAgent.replace(/.*?MSIE ([0-9]+?)[^0-9].*/g,'$1'));
if(!browserVersion)browserVersion=1;
var menuObj = document.getElementById('dhtmlgoodies_menu');
var mainMenuItemArray = new Array();
var mainMenuItem = menuObj.getElementsByTagName('LI')[0];
while(mainMenuItem){
if(mainMenuItem.tagName && mainMenuItem.tagName.toLowerCase()=='li'){
mainMenuItemArray[mainMenuItemArray.length] = mainMenuItem;
var aTag = mainMenuItem.getElementsByTagName('A')[0];
if(showSubOnMouseOver)
aTag.onmouseover = showSub;
else
aTag.onclick = showSub;
}
mainMenuItem = mainMenuItem.nextSibling;
}
var lis = menuObj.getElementsByTagName('A');
for(var no=0;no<lis.length;no++){
if(!showSubOnMouseOver)lis[no].onmouseover = stopAutoHide;
lis[no].onmouseout = initAutoHide;
lis[no].onmousemove = stopAutoHide;
}
for(var no=0;no<mainMenuItemArray.length;no++){
var sub = mainMenuItemArray[no].getElementsByTagName('UL')[0];
if(sub){
mainMenuItemArray[no].id = 'mainMenuItem' + (no+1);
var div = document.createElement('DIV');
div.className='dhtmlgoodies_subMenu';
document.body.appendChild(div);
div.appendChild(sub);
if(slideDirection=='right'){
div.style.left = getLeftPos(mainMenuItemArray[no]) + mainMenuItemArray[no].offsetWidth + xOffsetSubMenu + 'px';
}else{
div.style.left = getLeftPos(mainMenuItemArray[no]) + xOffsetSubMenu + 'px';
}
div.style.top = getTopPos(mainMenuItemArray[no]) + 'px';
div.id = 'subMenuDiv' + (no+1);
sub.id = 'submenuUl' + (no+1);
sub.style.position = 'relative';
if(navigator.userAgent.indexOf('Opera')>=0){
submenuObjArray[no+1] = new Array();
submenuObjArray[no+1]['parentDiv'] = mainMenuItemArray[no];
submenuObjArray[no+1]['divObj'] = div;
submenuObjArray[no+1]['ulObj'] = sub;
submenuObjArray[no+1]['width'] = sub.offsetWidth;
submenuObjArray[no+1]['left'] = div.style.left.replace(/[^0-9]/g,'');
}
sub.style.left = 1 - sub.offsetWidth + 'px';
if(browserVersion<7 && isMSIE)div.style.width = '1px';
if(navigator.userAgent.indexOf('Opera')<0){
submenuObjArray[no+1] = new Array();
submenuObjArray[no+1]['parentDiv'] = mainMenuItemArray[no];
submenuObjArray[no+1]['divObj'] = div;
submenuObjArray[no+1]['ulObj'] = sub;
submenuObjArray[no+1]['width'] = sub.offsetWidth;
submenuObjArray[no+1]['left'] = div.style.left.replace(/[^0-9]/g,'');
if(fixedSubMenuWidth)submenuObjArray[no+1]['width'] = fixedSubMenuWidth;
}
if(!document.all)div.style.width = '1px';
}
}
menuObj.style.visibility = 'visible';
window.onresize = resetPosition;
}
window.onload = initLeftMenu;
</script>
<script>
// 페이지 이동 ##################################################
function gotoUrl(url) {
if (url.stripspace() != "") {
location.href = url;
}
}
// 객체 Offset 가져오기 ##################################################
function getOffset(obj) {
var objOffset = { left : 0, top : 0 };
var objOffsetParent = obj.offsetParent;
objOffset.left = parseInt(obj.offsetLeft, 10);
objOffset.top = parseInt(obj.offsetTop, 10);
while (objOffsetParent) {
objOffset.left += parseInt(objOffsetParent.offsetLeft, 10);
objOffset.top += parseInt(objOffsetParent.offsetTop, 10);
objOffsetParent = objOffsetParent.offsetParent;
}
return objOffset;
}
function MM_swapImgRestore() { //v3.0
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
function MM_findObj(n, d) { //v4.01
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && d.getElementById) x=d.getElementById(n); return x;
}
function MM_swapImage() { //v3.0
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
function bluring(){
if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG")
document.body.focus();
}
document.onfocusin=bluring;
function Url(url) {
document.location.href=url;
}
function onMenu(td){
td.style.backgroundColor = "f23535"; //"50c204";
td.style.color = "FFFFFF";
}
function outMenu(td){
td.style.backgroundColor = "FFFFFF";
td.style.color = "383838";
}
function onMenuB(td){
td.style.backgroundColor = "cf0e13"; //"50c204";
td.style.color = "FFFFFF";
}
function outMenuB(td){
td.style.backgroundColor = "f7f7f7";
td.style.color = "d11a1f";
}
// 서브카테고리 마우스오버
function catOver(el,id) {
try{
$(id).style.display="block";
}catch(e){}
}
// 서브카테고리 마우스 아웃
function catOut(el,id) {
try{
$(id).style.display="none";
}catch(e){}
}
// 서브카테고리 마우스오버
function catOver(el,id) {
try{
$(id).style.display="block";
}catch(e){}
}
// 서브카테고리 마우스 아웃
function catOut(el,id) {
try{
$(id).style.display="none";
}catch(e){}
}
function ctShowDiv(type,object,imgUrl){
if(document.getElementById("top_cat_div").style.display=="none"){
eval('categoryDiv.style.display = "block";');
eval('top_cat_div.style.display = "block";');
}else{
if (self.location.pathname!='/' && self.location.pathname!='/index.php') {
eval('categoryDiv.style.display = "none";');
}
eval('top_cat_div.style.display = "none";');
}
}
</script>
</head>
<body>
<div id="aside" style="width:170px; height:377px;">
<div class="lnb">
<div>
<a href="#togle" onClick="togling()" class="toggle"><img src="/design/maxink/new/main/category.jpg" alt="전체메뉴" title="전체메뉴" /></a>
</div>
<div id="dhtmlgoodies_menu">
<ul>
<li style="padding-top:12px;"><a href="/shop/shopbrand.html?xcode=020&type=Y"><img src="/design/maxink/new/main/l_menu_01.jpg" onMouseOver="this.src='/design/maxink/new/main/l_menu2_01.jpg'" onMouseOut="this.src='/design/maxink/new/main/l_menu_01.jpg'" border="0"></a>
<ul>
<li> <table width="790" border="0" cellpadding="0" cellspacing="0">
<tr valign="top">
<td>
<table width="790" border="0" cellspacing="0" cellpadding="0">
<tr valign="top">
<td>
<table width="790" border="0" cellspacing="0" cellpadding="0">
<tr align="left">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style=" border-bottom:dotted 1px #cccccc; padding-left:12px; border-right:solid 1px #cccccc" onClick="Url('/shop/shopbrand.html?xcode=020&mcode=001&type=X')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>HP</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/shop/shopbrand.html?xcode=020&mcode=001&scode=001&type=X')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">프린터</td>
</tr>
<tr align="left">
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/shop/shopbrand.html?xcode=020&mcode=001&scode=002&type=X')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">복합기</td>
</tr>
<tr align="left">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style=" padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>EPSON</b></td>
</tr>
<tr align="left">
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('#')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">프린터</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('#')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">복합기</td>
</tr>
</table>
</td>
<td><table width="790" border="0" cellspacing="0" cellpadding="0">
<tr align="left">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('/shop/shopbrand.html?xcode=020&mcode=002&type=Y')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>BROTHER</b></td>
</tr>
<tr align="left">
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('#')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">프린터</td>
</tr>
<tr align="left">
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/shop/shopbrand.html?xcode=020&mcode=002&scode=001&type=X')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">복합기</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table></li>
</ul>
</li>
<li><a href="/shop/shopbrand.html?xcode=020&type=Y"><img src="/design/maxink/new/main/l_menu_02.jpg" onMouseOver="this.src='/design/maxink/new/main/l_menu2_02.jpg'" onMouseOut="this.src='/design/maxink/new/main/l_menu_02.jpg'" border="0"></a>
<ul>
<li>
<table width="790" border="0" cellspacing="0" cellpadding="0">
<tr valign="top">
<td>
<table width="790" border="0" cellspacing="0" cellpadding="0">
<tr valign="top">
<td>
<table width="790" border="0" cellspacing="0" cellpadding="0">
<tr align="left">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style=" border-bottom:dotted 1px #cccccc; padding-left:12px; border-right:solid 1px #cccccc" onClick="Url('/shop/shopbrand.html?xcode=002&mcode=001&type=Y')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>XEROX</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('#')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">프린터</td>
</tr>
<tr align="left">
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('#')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">복합기</td>
</tr>
</table>
</td>
<td><table width="790" border="0" cellspacing="0" cellpadding="0">
<tr align="left">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('/shop/shopbrand.html?xcode=002&mcode=002&type=Y')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>BROTHER</b></td>
</tr>
<tr align="left">
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('#')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">프린터</td>
</tr>
<tr align="left">
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('#')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">복합기</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</li>
</ul>
</li>
<li><a href="/shop/shopbrand.html?xcode=020&type=Y"><img src="/design/maxink/new/main/l_menu_03.jpg" onMouseOver="this.src='/design/maxink/new/main/l_menu2_03.jpg'" onMouseOut="this.src='/design/maxink/new/main/l_menu_03.jpg'" border="0"></a>
<ul>
<li>
<table width="790" border="0" cellpadding="0" cellspacing="0" >
<tr valign="top">
<td>
<table width="790" border="0" cellspacing="0" cellpadding="0">
<tr valign="top">
<td>
<table width="790" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('/shop/shopbrand.html?xcode=003&mcode=001&scode=001&type=X')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>HP</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">프린터</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">복합기</td>
</tr>
<tr>
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('/shop/shopbrand.html?xcode=003&mcode=001&scode=003&type=X')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>EPSON</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">프린터</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">복합기</td>
</tr>
<tr>
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('/shop/shopbrand.html?xcode=003&mcode=001&scode=004&type=X')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>BROTHER</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px;border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">프린터</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">복합기</td>
</tr>
</table>
</td>
<td><table width="790" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>CANON</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px;border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">프린터</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">복합기</td>
</tr>
<tr>
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>기타</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">프린터</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px;padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">복합기</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</li>
</ul>
</li>
<li><a href="/shop/shopbrand.html?xcode=020&type=Y"><img src="/design/maxink/new/main/l_menu_04.jpg" onMouseOver="this.src='/design/maxink/new/main/l_menu2_04.jpg'" onMouseOut="this.src='/design/maxink/new/main/l_menu_04.jpg'" border="0"></a>
<ul>
<li>
<table width="790" border="0" cellpadding="0" cellspacing="0" >
<tr valign="top">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('/shop/shopbrand.html?xcode=004&mcode=001&scode=001&type=X')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>XEROX</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/shop/shopbrand.html?xcode=004&mcode=001&type=X')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">프린터</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/shop/shopbrand.html?xcode=004&mcode=001&type=X')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">복합기</td>
</tr>
</table>
</li>
</ul>
</li>
<li><a href="/shop/shopbrand.html?xcode=020&type=Y"><img src="/design/maxink/new/main/l_menu_05.jpg" onMouseOver="this.src='/design/maxink/new/main/l_menu2_05.jpg'" onMouseOut="this.src='/design/maxink/new/main/l_menu_05.jpg'" border="0"></a>
<ul>
<li><table width="790" border="0" cellpadding="0" cellspacing="0" >
<tr valign="top">
<td>
<table width="790" border="0" cellspacing="0" cellpadding="0">
<tr valign="top">
<td>
<table width="790" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('/shop/shopbrand.html?xcode=003&mcode=003&scode=001&type=X')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>무한리필잉크</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/shop/shopbrand.html?xcode=003&type=M&mcode=003&scode=001')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">HP</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/shop/shopbrand.html?xcode=003&type=M&mcode=003&scode=002')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">EPSON</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/shop/shopbrand.html?xcode=003&type=M&mcode=003&scode=003')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">BROTHER</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/shop/shopbrand.html?xcode=003&type=M&mcode=003&scode=004')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">CANON</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/shop/shopbrand.html?xcode=003&type=M&mcode=003&scode=005')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">SAMSUNG</td>
</tr>
<tr>
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('/shop/shopbrand.html?xcode=003&type=M&mcode=003&scode=006')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>세정액</b></td>
</tr>
</table>
</td>
<td><table width="790" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>정품잉크</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px;border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">HP</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">EPSON</td>
</tr>
<tr>
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>BROTHER</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">CANON</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px;padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">SAMSUNG</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table></li>
</ul>
</li>
<li><a href="/shop/shopbrand.html?xcode=020&type=Y"><img src="/design/maxink/new/main/l_menu_06.jpg" onMouseOver="this.src='/design/maxink/new/main/l_menu2_06.jpg'" onMouseOut="this.src='/design/maxink/new/main/l_menu_06.jpg'" border="0"></a>
<ul>
<li><table width="790" border="0" cellpadding="0" cellspacing="0" >
<tr valign="top">
<td>
<table width="790" border="0" cellspacing="0" cellpadding="0">
<tr valign="top">
<td>
<table width="790" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('/shop/shopbrand.html?xcode=004&mcode=002&type=X')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>무한리필토너</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/shop/shopbrand.html?xcode=004&mcode=002&scode=001&type=X')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">XEROX</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/shop/shopbrand.html?xcode=004&type=M&mcode=002&scode=007')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">BROTHER</td>
</tr>
<tr>
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('/shop/shopbrand.html?xcode=004&mcode=003&type=X')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>정품토너</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/shop/shopbrand.html?xcode=004&type=M&mcode=003&scode=001')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">XEROX</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/shop/shopbrand.html?xcode=004&type=M&mcode=003&scode=002')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">HP</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">EPSON</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">BROTHER</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/shop/shopbrand.html?xcode=004&type=M&mcode=003&scode=004')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">CANON</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/shop/shopbrand.html?xcode=004&type=M&mcode=003&scode=003')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">SMSUNG</td>
</tr>
</table>
</td>
<td><table width="790" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>재생,호환토너</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px;border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">XEROX</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">HP</td>
</tr>
<tr>
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>EPSON</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">BROTHER</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px;padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">CANON</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px;padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">SAMSUNG</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table></li>
</ul>
</li>
<li><a href="/shop/shopbrand.html?xcode=020&type=Y"><img src="/design/maxink/new/main/l_menu_07.jpg" onMouseOver="this.src='/design/maxink/new/main/l_menu2_07.jpg'" onMouseOut="this.src='/design/maxink/new/main/l_menu_07.jpg'" border="0"></a>
<ul>
<li> <table width="790" border="0" cellpadding="0" cellspacing="0" >
<tr valign="top">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>프린터헤드</b></td>
</tr>
<tr valign="top">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>기타</b></td>
</tr>
</table>
</li>
</ul>
</li>
<li><a href="/shop/shopbrand.html?xcode=020&type=Y"><img src="/design/maxink/new/main/l_menu_08.jpg" onMouseOver="this.src='/design/maxink/new/main/l_menu2_08.jpg'" onMouseOut="this.src='/design/maxink/new/main/l_menu_08.jpg'" border="0"></a>
<ul>
<li><table width="790" border="0" cellpadding="0" cellspacing="0" >
<tr valign="top">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('/shop/shopbrand.html?xcode=003&mcode=002&scode=001&type=X')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>HP</b></td>
</tr>
<tr valign="top">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('/shop/shopbrand.html?xcode=003&type=M&mcode=002&scode=002')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>EPSON</b></td>
</tr>
<tr valign="top">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('/shop/shopbrand.html?xcode=003&type=M&mcode=002&scode=003')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>BROTHER</b></td>
</tr>
<tr valign="top">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('/shop/shopbrand.html?xcode=003&type=M&mcode=002&scode=004')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>CANON</b></td>
</tr>
<tr valign="top">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('/shop/shopbrand.html?xcode=003&type=M&mcode=002&scode=005')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>SAMSUNG</b></td>
</tr>
</table> </li>
</ul>
</li>
<li><a href="/shop/shopbrand.html?xcode=020&type=Y"><img src="/design/maxink/new/main/l_menu_09.jpg" onMouseOver="this.src='/design/maxink/new/main/l_menu2_09.jpg'" onMouseOut="this.src='/design/maxink/new/main/l_menu_09.jpg'" border="0"></a>
<ul>
<li><table width="790" border="0" cellpadding="0" cellspacing="0" >
<tr valign="top">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>무한칩관련</b></td>
</tr>
<tr valign="top">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>아크릴관련</b></td>
</tr>
<tr valign="top">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>호스관련</b></td>
</tr>
<tr valign="top">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>카트리지관련</b></td>
</tr>
<tr valign="top">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>카트리지관련</b></td>
</tr>
<tr valign="top">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>잉크병관련</b></td>
</tr>
<tr valign="top">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>공급기부품</b></td>
</tr>
<tr valign="top">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>기타부품백화점</b></td>
</tr>
</table>
</li>
</ul>
</li>
<li><a href="/shop/shopbrand.html?xcode=020&type=Y"><img src="/design/maxink/new/main/l_menu_10.jpg" onMouseOver="this.src='/design/maxink/new/main/l_menu2_10.jpg'" onMouseOut="this.src='/design/maxink/new/main/l_menu_10.jpg'" border="0"></a>
<ul>
<li><table width="790" border="0" cellpadding="0" cellspacing="0" >
<tr valign="top">
<td>
<table width="790" border="0" cellspacing="0" cellpadding="0">
<tr valign="top">
<td>
<table width="790" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('/shop/shopbrand.html?xcode=005&mcode=001&type=X')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>파우더</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">XEROX</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/shop/shopbrand.html?xcode=005&type=M&mcode=001&scode=002')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">HP</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">EPSON</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">BROTHER</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/shop/shopbrand.html?xcode=005&type=M&mcode=001&scode=004')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">CANON</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/shop/shopbrand.html?xcode=005&type=M&mcode=001&scode=003')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">SAMSUNG</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/shop/shopbrand.html?xcode=005&type=M&mcode=001&scode=007')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">기타</td>
</tr>
<tr>
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>드럼</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">XEROX</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">HP</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">EPSON</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">BROTHER</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">CANON</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">SAMSUNG</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">기타</td>
</tr>
</table>
</td>
<td>
<table width="790" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>CARRIER</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">XEROX</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">HP</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">EPSON</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">BROTHER</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">CANON</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">SAMSUNG</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">기타</td>
</tr>
<tr>
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>토너칩,드럼칩</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px;border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">XEROX</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">HP</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">EPSON</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">BROTHER</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px;padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">CANON</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px;padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">SAMSUNG</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px;padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">기타</td>
</tr>
</table>
</td>
<td>
<table width="790" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>롤러,블레이드</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px;border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">XEROX</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">HP</td>
</tr>
<tr>
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>EPSON</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">BROTHER</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px;padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">CANON</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px;padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">SAMSUNG</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px;padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">기타</td>
</tr>
<tr>
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>기타부품백화점</b></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table></li>
</ul>
</li>
<li><a href="/shop/shopbrand.html?xcode=020&type=Y"><img src="/design/maxink/new/main/l_menu_11.jpg" onMouseOver="this.src='/design/maxink/new/main/l_menu2_11.jpg'" onMouseOut="this.src='/design/maxink/new/main/l_menu_11.jpg'" border="0"></a>
<ul>
<li><table width="790" border="0" cellpadding="0" cellspacing="0" >
<tr valign="top">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('/shop/shopbrand.html?xcode=007&type=X')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>단가주문</b></td>
</tr>
</table></li>
</ul>
</li>
</div>
</div>
</div>
오류 주소 : http://www.gsfnc.com/preview/?dgnset_id=4699
좌측메뉴를 보시면 몇가지 문제가 있습니다.
1. 2단 서브메뉴가 몇초뒤에 마우스오버가 되있는데도 사라지는 현상
2. 2단 서브메뉴의 제목(회색두꺼운)부분이 처음부터 빨강색개통으로 보여져야 하는데
회색으로 보이고 마우스커서가 한번 지나가야 빨강색으로 바뀝니다.
초보라서 어디가 잘못된건지 모르겠어요 ㅠㅠ 도와주세욥
<script type="text/javascript">
var timeBeforeAutoHide = 790; // Microseconds to wait before auto hiding menu(1000 = 1 second)
var slideSpeed_out = 45; // Steps to move sub menu at a time ( higher = faster)
var slideSpeed_in = 35;
var slideTimeout_out = 25; // Microseconds between slide steps ( lower = faster)
var slideTimeout_in = 10; // Microseconds between slide steps ( lower = faster)
var showSubOnMouseOver = true; // false = show sub menu on click, true = show sub menu on mouse over
var fixedSubMenuWidth = false; // Width of sub menu items - A number(width in pixels) or false when width should be dynamic
var xOffsetSubMenu = 0; // Offset x-position of sub menu items - use negative value if you want the sub menu to overlap main menu
var slideDirection = 'right'; // Slide to left or right ?
/* Don't change anything below here */
var activeSubMenuId = false;
var activeMainMenuItem = false;
var currentZIndex = 3000;
var autoHideTimer = 0;
var submenuObjArray = new Array();
var okToSlideInSub = new Array();
var subPositioned = new Array();
function stopAutoHide()
{
autoHideTimer = -1;
}
function initAutoHide()
{
autoHideTimer = 0;
if(autoHideTimer>=0)autoHide();
}
function autoHide()
{
if(autoHideTimer>timeBeforeAutoHide)
{
if(activeMainMenuItem){
activeMainMenuItem.className='';
activeMainMenuItem = false;
}
if(activeSubMenuId){
var obj = document.getElementById('subMenuDiv' + activeSubMenuId);
showSub();
}
}else{
if(autoHideTimer>=0){
autoHideTimer+=50;
setTimeout('autoHide()',50);
}
}
}
function getTopPos(inputObj)
{
var returnValue = inputObj.offsetTop;
while((inputObj = inputObj.offsetParent) != null)returnValue += inputObj.offsetTop;
return returnValue;
}
function getLeftPos(inputObj)
{
var returnValue = inputObj.offsetLeft;
while((inputObj = inputObj.offsetParent) != null)returnValue += inputObj.offsetLeft;
return returnValue;
}
function showSub()
{
var subObj = false;
if(this && this.tagName){
var numericId = this.parentNode.id.replace(/[^0-9]/g,'');
okToSlideInSub[numericId] = false;
var subObj = document.getElementById('subMenuDiv' + numericId);
if(activeMainMenuItem)activeMainMenuItem.className='';
if(subObj){
if(!subPositioned[numericId]){
if(slideDirection=='right'){
subObj.style.left = getLeftPos(submenuObjArray[numericId]['parentDiv']) + submenuObjArray[numericId]['parentDiv'].offsetWidth + xOffsetSubMenu + 'px';
}else{
subObj.style.left = getLeftPos(submenuObjArray[numericId]['parentDiv']) + xOffsetSubMenu + 'px';
}
submenuObjArray[numericId]['left'] = subObj.style.left.replace(/[^0-9]/g,'');
subObj.style.top = getTopPos(submenuObjArray[numericId]['parentDiv']) + 'px';
subPositioned[numericId] = true;
}
subObj.style.visibility = 'visible';
subObj.style.zIndex = currentZIndex;
currentZIndex++;
this.className='activeMainMenuItem';
activeMainMenuItem = this;
}
}else{
var numericId = activeSubMenuId;
}
if(activeSubMenuId && (numericId!=activeSubMenuId || !subObj))slideMenu(activeSubMenuId,(slideSpeed_in*-10));
if(numericId!=activeSubMenuId && this && subObj){
subObj.style.width = '0px';
slideMenu(numericId,slideSpeed_out);
activeSubMenuId = numericId;
}else{
if(numericId!=activeSubMenuId)activeSubMenuId = false;
}
if(showSubOnMouseOver)stopAutoHide();
}
function slideMenu(menuIndex,speed){
var obj = submenuObjArray[menuIndex]['divObj'];
var obj2 = submenuObjArray[menuIndex]['ulObj'];
var width = obj.offsetWidth + speed;
if(speed<0){
if(width<0)width = 0;
obj.style.width = width + 'px';
if(slideDirection=='left'){
obj.style.left = submenuObjArray[menuIndex]['left'] - width + 'px';
obj2.style.left = '0px';
}else{
obj2.style.left = width - submenuObjArray[menuIndex]['width'] + 'px'
}
if(width>0 && okToSlideInSub[menuIndex])setTimeout('slideMenu(' + menuIndex + ',' + speed + ')',slideTimeout_in); else{
obj.style.visibility = 'hidden';
obj.style.width = '0px';
if(activeSubMenuId==menuIndex)activeSubMenuId=false;
}
}else{
if(width>submenuObjArray[menuIndex]['width'])width = submenuObjArray[menuIndex]['width'];
if(slideDirection=='left'){
obj.style.left = submenuObjArray[menuIndex]['left'] - width + 'px';
obj2.style.left = '0px';
}else{
obj2.style.left = width - submenuObjArray[menuIndex]['width'] + 'px'
}
obj.style.width = width + 'px';
if(width<submenuObjArray[menuIndex]['width']){
setTimeout('slideMenu(' + menuIndex + ',' + speed + ')',slideTimeout_out);
}else{
okToSlideInSub[menuIndex] = true;
}
}
}
function resetPosition()
{
subPositioned.length = 0;
}
function initLeftMenu()
{
var isMSIE = navigator.userAgent.indexOf('MSIE')>=0?true:false;
var browserVersion = parseInt(navigator.userAgent.replace(/.*?MSIE ([0-9]+?)[^0-9].*/g,'$1'));
if(!browserVersion)browserVersion=1;
var menuObj = document.getElementById('dhtmlgoodies_menu');
var mainMenuItemArray = new Array();
var mainMenuItem = menuObj.getElementsByTagName('LI')[0];
while(mainMenuItem){
if(mainMenuItem.tagName && mainMenuItem.tagName.toLowerCase()=='li'){
mainMenuItemArray[mainMenuItemArray.length] = mainMenuItem;
var aTag = mainMenuItem.getElementsByTagName('A')[0];
if(showSubOnMouseOver)
aTag.onmouseover = showSub;
else
aTag.onclick = showSub;
}
mainMenuItem = mainMenuItem.nextSibling;
}
var lis = menuObj.getElementsByTagName('A');
for(var no=0;no<lis.length;no++){
if(!showSubOnMouseOver)lis[no].onmouseover = stopAutoHide;
lis[no].onmouseout = initAutoHide;
lis[no].onmousemove = stopAutoHide;
}
for(var no=0;no<mainMenuItemArray.length;no++){
var sub = mainMenuItemArray[no].getElementsByTagName('UL')[0];
if(sub){
mainMenuItemArray[no].id = 'mainMenuItem' + (no+1);
var div = document.createElement('DIV');
div.className='dhtmlgoodies_subMenu';
document.body.appendChild(div);
div.appendChild(sub);
if(slideDirection=='right'){
div.style.left = getLeftPos(mainMenuItemArray[no]) + mainMenuItemArray[no].offsetWidth + xOffsetSubMenu + 'px';
}else{
div.style.left = getLeftPos(mainMenuItemArray[no]) + xOffsetSubMenu + 'px';
}
div.style.top = getTopPos(mainMenuItemArray[no]) + 'px';
div.id = 'subMenuDiv' + (no+1);
sub.id = 'submenuUl' + (no+1);
sub.style.position = 'relative';
if(navigator.userAgent.indexOf('Opera')>=0){
submenuObjArray[no+1] = new Array();
submenuObjArray[no+1]['parentDiv'] = mainMenuItemArray[no];
submenuObjArray[no+1]['divObj'] = div;
submenuObjArray[no+1]['ulObj'] = sub;
submenuObjArray[no+1]['width'] = sub.offsetWidth;
submenuObjArray[no+1]['left'] = div.style.left.replace(/[^0-9]/g,'');
}
sub.style.left = 1 - sub.offsetWidth + 'px';
if(browserVersion<7 && isMSIE)div.style.width = '1px';
if(navigator.userAgent.indexOf('Opera')<0){
submenuObjArray[no+1] = new Array();
submenuObjArray[no+1]['parentDiv'] = mainMenuItemArray[no];
submenuObjArray[no+1]['divObj'] = div;
submenuObjArray[no+1]['ulObj'] = sub;
submenuObjArray[no+1]['width'] = sub.offsetWidth;
submenuObjArray[no+1]['left'] = div.style.left.replace(/[^0-9]/g,'');
if(fixedSubMenuWidth)submenuObjArray[no+1]['width'] = fixedSubMenuWidth;
}
if(!document.all)div.style.width = '1px';
}
}
menuObj.style.visibility = 'visible';
window.onresize = resetPosition;
}
window.onload = initLeftMenu;
</script>
<script>
// 페이지 이동 ##################################################
function gotoUrl(url) {
if (url.stripspace() != "") {
location.href = url;
}
}
// 객체 Offset 가져오기 ##################################################
function getOffset(obj) {
var objOffset = { left : 0, top : 0 };
var objOffsetParent = obj.offsetParent;
objOffset.left = parseInt(obj.offsetLeft, 10);
objOffset.top = parseInt(obj.offsetTop, 10);
while (objOffsetParent) {
objOffset.left += parseInt(objOffsetParent.offsetLeft, 10);
objOffset.top += parseInt(objOffsetParent.offsetTop, 10);
objOffsetParent = objOffsetParent.offsetParent;
}
return objOffset;
}
function MM_swapImgRestore() { //v3.0
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
function MM_findObj(n, d) { //v4.01
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && d.getElementById) x=d.getElementById(n); return x;
}
function MM_swapImage() { //v3.0
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
function bluring(){
if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG")
document.body.focus();
}
document.onfocusin=bluring;
function Url(url) {
document.location.href=url;
}
function onMenu(td){
td.style.backgroundColor = "f23535"; //"50c204";
td.style.color = "FFFFFF";
}
function outMenu(td){
td.style.backgroundColor = "FFFFFF";
td.style.color = "383838";
}
function onMenuB(td){
td.style.backgroundColor = "cf0e13"; //"50c204";
td.style.color = "FFFFFF";
}
function outMenuB(td){
td.style.backgroundColor = "f7f7f7";
td.style.color = "d11a1f";
}
// 서브카테고리 마우스오버
function catOver(el,id) {
try{
$(id).style.display="block";
}catch(e){}
}
// 서브카테고리 마우스 아웃
function catOut(el,id) {
try{
$(id).style.display="none";
}catch(e){}
}
// 서브카테고리 마우스오버
function catOver(el,id) {
try{
$(id).style.display="block";
}catch(e){}
}
// 서브카테고리 마우스 아웃
function catOut(el,id) {
try{
$(id).style.display="none";
}catch(e){}
}
function ctShowDiv(type,object,imgUrl){
if(document.getElementById("top_cat_div").style.display=="none"){
eval('categoryDiv.style.display = "block";');
eval('top_cat_div.style.display = "block";');
}else{
if (self.location.pathname!='/' && self.location.pathname!='/index.php') {
eval('categoryDiv.style.display = "none";');
}
eval('top_cat_div.style.display = "none";');
}
}
</script>
</head>
<body>
<div id="aside" style="width:170px; height:377px;">
<div class="lnb">
<div>
<a href="#togle" onClick="togling()" class="toggle"><img src="/design/maxink/new/main/category.jpg" alt="전체메뉴" title="전체메뉴" /></a>
</div>
<div id="dhtmlgoodies_menu">
<ul>
<li style="padding-top:12px;"><a href="/shop/shopbrand.html?xcode=020&type=Y"><img src="/design/maxink/new/main/l_menu_01.jpg" onMouseOver="this.src='/design/maxink/new/main/l_menu2_01.jpg'" onMouseOut="this.src='/design/maxink/new/main/l_menu_01.jpg'" border="0"></a>
<ul>
<li> <table width="790" border="0" cellpadding="0" cellspacing="0">
<tr valign="top">
<td>
<table width="790" border="0" cellspacing="0" cellpadding="0">
<tr valign="top">
<td>
<table width="790" border="0" cellspacing="0" cellpadding="0">
<tr align="left">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style=" border-bottom:dotted 1px #cccccc; padding-left:12px; border-right:solid 1px #cccccc" onClick="Url('/shop/shopbrand.html?xcode=020&mcode=001&type=X')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>HP</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/shop/shopbrand.html?xcode=020&mcode=001&scode=001&type=X')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">프린터</td>
</tr>
<tr align="left">
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/shop/shopbrand.html?xcode=020&mcode=001&scode=002&type=X')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">복합기</td>
</tr>
<tr align="left">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style=" padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>EPSON</b></td>
</tr>
<tr align="left">
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('#')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">프린터</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('#')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">복합기</td>
</tr>
</table>
</td>
<td><table width="790" border="0" cellspacing="0" cellpadding="0">
<tr align="left">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('/shop/shopbrand.html?xcode=020&mcode=002&type=Y')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>BROTHER</b></td>
</tr>
<tr align="left">
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('#')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">프린터</td>
</tr>
<tr align="left">
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/shop/shopbrand.html?xcode=020&mcode=002&scode=001&type=X')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">복합기</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table></li>
</ul>
</li>
<li><a href="/shop/shopbrand.html?xcode=020&type=Y"><img src="/design/maxink/new/main/l_menu_02.jpg" onMouseOver="this.src='/design/maxink/new/main/l_menu2_02.jpg'" onMouseOut="this.src='/design/maxink/new/main/l_menu_02.jpg'" border="0"></a>
<ul>
<li>
<table width="790" border="0" cellspacing="0" cellpadding="0">
<tr valign="top">
<td>
<table width="790" border="0" cellspacing="0" cellpadding="0">
<tr valign="top">
<td>
<table width="790" border="0" cellspacing="0" cellpadding="0">
<tr align="left">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style=" border-bottom:dotted 1px #cccccc; padding-left:12px; border-right:solid 1px #cccccc" onClick="Url('/shop/shopbrand.html?xcode=002&mcode=001&type=Y')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>XEROX</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('#')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">프린터</td>
</tr>
<tr align="left">
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('#')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">복합기</td>
</tr>
</table>
</td>
<td><table width="790" border="0" cellspacing="0" cellpadding="0">
<tr align="left">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('/shop/shopbrand.html?xcode=002&mcode=002&type=Y')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>BROTHER</b></td>
</tr>
<tr align="left">
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('#')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">프린터</td>
</tr>
<tr align="left">
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('#')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">복합기</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</li>
</ul>
</li>
<li><a href="/shop/shopbrand.html?xcode=020&type=Y"><img src="/design/maxink/new/main/l_menu_03.jpg" onMouseOver="this.src='/design/maxink/new/main/l_menu2_03.jpg'" onMouseOut="this.src='/design/maxink/new/main/l_menu_03.jpg'" border="0"></a>
<ul>
<li>
<table width="790" border="0" cellpadding="0" cellspacing="0" >
<tr valign="top">
<td>
<table width="790" border="0" cellspacing="0" cellpadding="0">
<tr valign="top">
<td>
<table width="790" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('/shop/shopbrand.html?xcode=003&mcode=001&scode=001&type=X')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>HP</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">프린터</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">복합기</td>
</tr>
<tr>
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('/shop/shopbrand.html?xcode=003&mcode=001&scode=003&type=X')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>EPSON</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">프린터</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">복합기</td>
</tr>
<tr>
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('/shop/shopbrand.html?xcode=003&mcode=001&scode=004&type=X')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>BROTHER</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px;border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">프린터</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">복합기</td>
</tr>
</table>
</td>
<td><table width="790" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>CANON</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px;border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">프린터</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">복합기</td>
</tr>
<tr>
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>기타</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">프린터</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px;padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">복합기</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</li>
</ul>
</li>
<li><a href="/shop/shopbrand.html?xcode=020&type=Y"><img src="/design/maxink/new/main/l_menu_04.jpg" onMouseOver="this.src='/design/maxink/new/main/l_menu2_04.jpg'" onMouseOut="this.src='/design/maxink/new/main/l_menu_04.jpg'" border="0"></a>
<ul>
<li>
<table width="790" border="0" cellpadding="0" cellspacing="0" >
<tr valign="top">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('/shop/shopbrand.html?xcode=004&mcode=001&scode=001&type=X')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>XEROX</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/shop/shopbrand.html?xcode=004&mcode=001&type=X')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">프린터</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/shop/shopbrand.html?xcode=004&mcode=001&type=X')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">복합기</td>
</tr>
</table>
</li>
</ul>
</li>
<li><a href="/shop/shopbrand.html?xcode=020&type=Y"><img src="/design/maxink/new/main/l_menu_05.jpg" onMouseOver="this.src='/design/maxink/new/main/l_menu2_05.jpg'" onMouseOut="this.src='/design/maxink/new/main/l_menu_05.jpg'" border="0"></a>
<ul>
<li><table width="790" border="0" cellpadding="0" cellspacing="0" >
<tr valign="top">
<td>
<table width="790" border="0" cellspacing="0" cellpadding="0">
<tr valign="top">
<td>
<table width="790" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('/shop/shopbrand.html?xcode=003&mcode=003&scode=001&type=X')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>무한리필잉크</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/shop/shopbrand.html?xcode=003&type=M&mcode=003&scode=001')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">HP</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/shop/shopbrand.html?xcode=003&type=M&mcode=003&scode=002')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">EPSON</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/shop/shopbrand.html?xcode=003&type=M&mcode=003&scode=003')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">BROTHER</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/shop/shopbrand.html?xcode=003&type=M&mcode=003&scode=004')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">CANON</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/shop/shopbrand.html?xcode=003&type=M&mcode=003&scode=005')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">SAMSUNG</td>
</tr>
<tr>
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('/shop/shopbrand.html?xcode=003&type=M&mcode=003&scode=006')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>세정액</b></td>
</tr>
</table>
</td>
<td><table width="790" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>정품잉크</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px;border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">HP</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">EPSON</td>
</tr>
<tr>
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>BROTHER</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">CANON</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px;padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">SAMSUNG</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table></li>
</ul>
</li>
<li><a href="/shop/shopbrand.html?xcode=020&type=Y"><img src="/design/maxink/new/main/l_menu_06.jpg" onMouseOver="this.src='/design/maxink/new/main/l_menu2_06.jpg'" onMouseOut="this.src='/design/maxink/new/main/l_menu_06.jpg'" border="0"></a>
<ul>
<li><table width="790" border="0" cellpadding="0" cellspacing="0" >
<tr valign="top">
<td>
<table width="790" border="0" cellspacing="0" cellpadding="0">
<tr valign="top">
<td>
<table width="790" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('/shop/shopbrand.html?xcode=004&mcode=002&type=X')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>무한리필토너</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/shop/shopbrand.html?xcode=004&mcode=002&scode=001&type=X')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">XEROX</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/shop/shopbrand.html?xcode=004&type=M&mcode=002&scode=007')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">BROTHER</td>
</tr>
<tr>
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('/shop/shopbrand.html?xcode=004&mcode=003&type=X')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>정품토너</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/shop/shopbrand.html?xcode=004&type=M&mcode=003&scode=001')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">XEROX</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/shop/shopbrand.html?xcode=004&type=M&mcode=003&scode=002')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">HP</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">EPSON</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">BROTHER</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/shop/shopbrand.html?xcode=004&type=M&mcode=003&scode=004')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">CANON</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/shop/shopbrand.html?xcode=004&type=M&mcode=003&scode=003')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">SMSUNG</td>
</tr>
</table>
</td>
<td><table width="790" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>재생,호환토너</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px;border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">XEROX</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">HP</td>
</tr>
<tr>
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>EPSON</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">BROTHER</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px;padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">CANON</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px;padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">SAMSUNG</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table></li>
</ul>
</li>
<li><a href="/shop/shopbrand.html?xcode=020&type=Y"><img src="/design/maxink/new/main/l_menu_07.jpg" onMouseOver="this.src='/design/maxink/new/main/l_menu2_07.jpg'" onMouseOut="this.src='/design/maxink/new/main/l_menu_07.jpg'" border="0"></a>
<ul>
<li> <table width="790" border="0" cellpadding="0" cellspacing="0" >
<tr valign="top">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>프린터헤드</b></td>
</tr>
<tr valign="top">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>기타</b></td>
</tr>
</table>
</li>
</ul>
</li>
<li><a href="/shop/shopbrand.html?xcode=020&type=Y"><img src="/design/maxink/new/main/l_menu_08.jpg" onMouseOver="this.src='/design/maxink/new/main/l_menu2_08.jpg'" onMouseOut="this.src='/design/maxink/new/main/l_menu_08.jpg'" border="0"></a>
<ul>
<li><table width="790" border="0" cellpadding="0" cellspacing="0" >
<tr valign="top">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('/shop/shopbrand.html?xcode=003&mcode=002&scode=001&type=X')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>HP</b></td>
</tr>
<tr valign="top">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('/shop/shopbrand.html?xcode=003&type=M&mcode=002&scode=002')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>EPSON</b></td>
</tr>
<tr valign="top">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('/shop/shopbrand.html?xcode=003&type=M&mcode=002&scode=003')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>BROTHER</b></td>
</tr>
<tr valign="top">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('/shop/shopbrand.html?xcode=003&type=M&mcode=002&scode=004')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>CANON</b></td>
</tr>
<tr valign="top">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('/shop/shopbrand.html?xcode=003&type=M&mcode=002&scode=005')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>SAMSUNG</b></td>
</tr>
</table> </li>
</ul>
</li>
<li><a href="/shop/shopbrand.html?xcode=020&type=Y"><img src="/design/maxink/new/main/l_menu_09.jpg" onMouseOver="this.src='/design/maxink/new/main/l_menu2_09.jpg'" onMouseOut="this.src='/design/maxink/new/main/l_menu_09.jpg'" border="0"></a>
<ul>
<li><table width="790" border="0" cellpadding="0" cellspacing="0" >
<tr valign="top">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>무한칩관련</b></td>
</tr>
<tr valign="top">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>아크릴관련</b></td>
</tr>
<tr valign="top">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>호스관련</b></td>
</tr>
<tr valign="top">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>카트리지관련</b></td>
</tr>
<tr valign="top">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>카트리지관련</b></td>
</tr>
<tr valign="top">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>잉크병관련</b></td>
</tr>
<tr valign="top">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>공급기부품</b></td>
</tr>
<tr valign="top">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>기타부품백화점</b></td>
</tr>
</table>
</li>
</ul>
</li>
<li><a href="/shop/shopbrand.html?xcode=020&type=Y"><img src="/design/maxink/new/main/l_menu_10.jpg" onMouseOver="this.src='/design/maxink/new/main/l_menu2_10.jpg'" onMouseOut="this.src='/design/maxink/new/main/l_menu_10.jpg'" border="0"></a>
<ul>
<li><table width="790" border="0" cellpadding="0" cellspacing="0" >
<tr valign="top">
<td>
<table width="790" border="0" cellspacing="0" cellpadding="0">
<tr valign="top">
<td>
<table width="790" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('/shop/shopbrand.html?xcode=005&mcode=001&type=X')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>파우더</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">XEROX</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/shop/shopbrand.html?xcode=005&type=M&mcode=001&scode=002')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">HP</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">EPSON</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">BROTHER</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/shop/shopbrand.html?xcode=005&type=M&mcode=001&scode=004')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">CANON</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/shop/shopbrand.html?xcode=005&type=M&mcode=001&scode=003')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">SAMSUNG</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/shop/shopbrand.html?xcode=005&type=M&mcode=001&scode=007')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">기타</td>
</tr>
<tr>
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>드럼</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">XEROX</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">HP</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">EPSON</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">BROTHER</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">CANON</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">SAMSUNG</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">기타</td>
</tr>
</table>
</td>
<td>
<table width="790" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>CARRIER</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">XEROX</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">HP</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">EPSON</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">BROTHER</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">CANON</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">SAMSUNG</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">기타</td>
</tr>
<tr>
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>토너칩,드럼칩</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px;border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">XEROX</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">HP</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">EPSON</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">BROTHER</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px;padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">CANON</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px;padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">SAMSUNG</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px;padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">기타</td>
</tr>
</table>
</td>
<td>
<table width="790" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>롤러,블레이드</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px;border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">XEROX</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">HP</td>
</tr>
<tr>
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>EPSON</b></td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">BROTHER</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px;padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">CANON</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px;padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">SAMSUNG</td>
</tr>
<tr>
<td height="25"class="sub_menu_td2" style="padding-left:12px;padding-left:12px; border-right:#cccccc 1px solid" onClick="Url('/category.php?categoryId=10580')" onMouseOver="onMenu(this)" onMouseOut="outMenu(this)">기타</td>
</tr>
<tr>
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('#')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>기타부품백화점</b></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table></li>
</ul>
</li>
<li><a href="/shop/shopbrand.html?xcode=020&type=Y"><img src="/design/maxink/new/main/l_menu_11.jpg" onMouseOver="this.src='/design/maxink/new/main/l_menu2_11.jpg'" onMouseOut="this.src='/design/maxink/new/main/l_menu_11.jpg'" border="0"></a>
<ul>
<li><table width="790" border="0" cellpadding="0" cellspacing="0" >
<tr valign="top">
<td height="25" bgcolor="#f7f7f7" class="sub_menu_td4" style="padding-left:12px; border-bottom:dotted 1px #cccccc; border-right:solid 1px #cccccc" onClick="Url('/shop/shopbrand.html?xcode=007&type=X')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>단가주문</b></td>
</tr>
</table></li>
</ul>
</li>
</div>
</div>
</div>
댓글 전체
질문 1번의 경우
setTimeout('autoHide()',50);
을 검색하셔서 주석 처리 하시면 자동으로 사라지는 현상은 없을 겁니다.
참고로 메뉴를 사용하다가 일정시간 움직임이 없을 때 사라지게 하려면
setTimeout('autoHide()',autoHideTimer);
이렇게 사용하시면 됩니다.
질문 2번의 경우
첨부터 bgcolor를 잘못 주셨습니다.
예를 들어
sub_menu_td4를 검색해 보시면(스타일에 정의는 안되어 있는 듯 합니다.)
아래와 같은 부분들이 나올겁니다.
<td height="25" bgcolor="#ff0000" class="sub_menu_td4" style=" border-bottom:dotted 1px #cccccc; padding-left:12px; border-right:solid 1px #cccccc" onClick="Url('/shop/shopbrand.html?xcode=020&mcode=001&type=X')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>HP</b></td>
이부분의 bgcolor="#ff0000" 를 원하는 색깔로 바꾸시면 해결 되실겁니다.
setTimeout('autoHide()',50);
을 검색하셔서 주석 처리 하시면 자동으로 사라지는 현상은 없을 겁니다.
참고로 메뉴를 사용하다가 일정시간 움직임이 없을 때 사라지게 하려면
setTimeout('autoHide()',autoHideTimer);
이렇게 사용하시면 됩니다.
질문 2번의 경우
첨부터 bgcolor를 잘못 주셨습니다.
예를 들어
sub_menu_td4를 검색해 보시면(스타일에 정의는 안되어 있는 듯 합니다.)
아래와 같은 부분들이 나올겁니다.
<td height="25" bgcolor="#ff0000" class="sub_menu_td4" style=" border-bottom:dotted 1px #cccccc; padding-left:12px; border-right:solid 1px #cccccc" onClick="Url('/shop/shopbrand.html?xcode=020&mcode=001&type=X')" onMouseOver="onMenuB(this)" onMouseOut="outMenuB(this)"><b>HP</b></td>
이부분의 bgcolor="#ff0000" 를 원하는 색깔로 바꾸시면 해결 되실겁니다.
넘 감사합니다> <