var frontPath = "http://mobile.nate.com/img/lnb/";
var fileFormat = ".gif";
var initSeqNo;
var seqNo;

function imageChange(seqNo, mode) {
	var fileName = getFileName(seqNo, mode);
	document["img" + seqNo].src= frontPath + fileName;
}

function getFileName(seqNo, mode){
	var fileName;

	fileName = "btn_bell_" + seqNo;
	if (mode == "v"){
		fileName = fileName + "_o";
	}
	fileName = fileName + fileFormat;

	return fileName;
}

link = new Array(      
		'http://ldwc.nate.com/event_funfun_index.jsp ',//Fun랭킹
        'http://ldwc.nate.com/event_pmang_index.jsp ',//피망
		'http://ldwc.nate.com/event_index.jsp',//벨&SBS
		'http://mobile.nate.com/svcmain/live.html',//라이브벨
		'http://lbpwc.nate.com:8080/plus/index.jsp',//라이브벨플러스
		'http://mobile.nate.com/svcmain/my.html',//마이벨	    
		'http://mobile.nate.com/svcmain/cut.html',//컷팅벨
		'http://mentbell.nate.com/myname/myname_live.php',//멘트별
		'http://uccbell.nate.com/uccbell.html',//ucc벨	
		'http://wtp.nate.com:9091/'//노래방     
);
order = new Array('11','6','10','1','2','3','4','5','8','7');
function initMenu(seqNo){		
	data ="";	
	dataheader = "<table width=97 cellspacing=0 cellpadding=0  border=0><tr><td><img src='http://mobile.nate.com/img/lnb/title_channel_bell.gif' border=0></td></tr><tr><td height=5></td></tr><tr><td height=1 bgcolor=e7e7e7></td></tr>";
	databottom = "</table>";
	for(i=1; i<link.length+1; i++){
		j = order[i-1];
		if (j == seqNo){
			if (j == order[0]){
				data += "<tr><td style='padding-top:5'><a href='"+link[i-1]+"' target='_top' onMouseOver=\"imageChange('"+j+"','v')\"><img name='img"+j+"' src='http://mobile.nate.com/img/lnb/btn_bell_"+j+"_o.gif' width='97' height='22' border=0></a></td></tr>";
			}else{
				data += "<tr><td style='padding-top:1'><a href='"+link[i-1]+"' target='_top' onMouseOver=\"imageChange('"+j+"','v')\"><img name='img"+j+"' src='http://mobile.nate.com/img/lnb/btn_bell_"+j+"_o.gif' width='97' height='22' border=0></a></td></tr>";
			}
		}else{
			if (j == order[0]){
				data += "<tr><td style='padding-top:5'><a href='"+link[i-1]+"' target='_top' onMouseOver=\"imageChange('"+j+"','v')\" onMouseOut=\"imageChange('"+j+"','u')\"><img name='img"+j+"' src='http://mobile.nate.com/img/lnb/btn_bell_"+j+".gif' width='97' height='22' border=0></a></td></tr>";
			}else{
				data += "<tr><td style='padding-top:1'><a href='"+link[i-1]+"' target='_top' onMouseOver=\"imageChange('"+j+"','v')\" onMouseOut=\"imageChange('"+j+"','u')\"><img name='img"+j+"' src='http://mobile.nate.com/img/lnb/btn_bell_"+j+".gif' width='97' height='22' border=0></a></td></tr>";
			}
		}
	}	
	data = dataheader + data + databottom;
	document.write(data);
}				
