var Arr=new Array();
var Arr1=new Array();
var ArrSub=new Array();
var ArrLink=new Array();
var ArrSubLink=new Array();


function designMenu1(mainMenuIdx,subMenuIdx)
{
var strTemp;
Arr[0]="&nbsp;<img src='../images/plus.gif' alt='' name='plus' width='5' height='5' border='0'  /> General VAS";
Arr[1]="&nbsp;<img src='../images/plus.gif' alt='' name='plus' width='5' height='5' border='0'  /> Entertainment Based VAS";
//Arr[2]=" <img src='../images/plus.gif' alt='' name='plus' width='5' height='5' border='0'  /> Corporate VAS";
Arr[2]="&nbsp;<img src='../images/plus.gif' alt='' name='plus' width='5' height='5' border='0'  /> Airtel 3.5G";
//Arr[4]=" <img src='../images/plus.gif' alt='' name='plus' width='5' height='5' border='0'  /> M-Commerce";
//Arr[5]=" <img src='../images/plus.gif' alt='' name='plus6' width='5' height='5' border='0'  /> IDD";


Arr1[0]="&nbsp;<img src='../images/plus.gif' alt='' name='plus' width='5' height='5' border='0'  /> <font style='text-color:red'>General VAS</font>";
Arr1[1]="&nbsp;<img src='../images/minus.gif' alt='' name='minus22' width='5' height='5' border='0'  /> <font style='text-color:red'>Entertainment Based VAS</font>";
//Arr1[2]=" <img src='../images/minus.gif' alt='' name='plus' width='5' height='5' border='0'  /> <font style='text-color:red'>Corporate VAS</font>";
Arr1[2]="&nbsp;<img src='../images/minus.gif' alt='' name='plus' width='5' height='5' border='0'  /> <font style='text-color:red'>Airtel 3G</font>";
//Arr1[4]=" <img src='../images/minus.gif' alt='' name='plus' width='5' height='5' border='0'  /> <font style='text-color:red'>M-Commerce</font>";
//Arr1[5]=" <img src='../images/minus.gif' alt='' name='minus6' width='5' height='5' border='0'  /> <font style='text-color:red'>IDD</font>";
/*ArrLink[0]="../vasworld/sms.html";
ArrLink[1]="#";
ArrLink[2]="#";*/


ArrLink[0]="../vasworld/sms.html";
ArrLink[1]="../vasworld/airtel_welcome_tunes.html";
ArrLink[2]="../vasworld/airtel3g.html";

ArrSub[0]=new Array();


ArrSubLink[0]=new Array();

ArrSub[1]=new Array();



ArrSubLink[1]=new Array();


ArrSub[2]=new Array();








strTemp="";
for(i=0;i<Arr.length;i++)
{
	strTemp+="<div id='divMainMenu"+i+"' style='padding-top:0px'><table border='0' cellpadding='0' cellspacing='0' width='166' style='padding-top:0px;margin-left:-5px;'>";
    if(parseInt(mainMenuIdx)==parseInt(i))
	    strTemp+="<TR style='padding-left: 0px;border-collapse: collapse;background-image:url(../images/bg_leftnav_ebusiness.gif); background-position:bottom; background-color:#f3f3f3;'><TD style='cursor:hand;cursor:pointer;height:22px;padding-left:6px;' onclick='openPage("+i+",0)'>"+Arr1[i]+"</TD></TR>";
	else
	    strTemp+="<TR style='background-image:url(../images/bg_leftnav_ebusiness.gif); background-position:bottom; background-color:#f3f3f3;'><TD style='cursor:hand;cursor:pointer;height:22px;padding-left:6px;' onclick='openPage("+i+",0)'>"+Arr[i]+"</TD></TR>";
	strTemp+="</table></div><div id='divSubMenu"+i+"' style='margin-left:-4px;'></div>";
	
}
document.getElementById("divMenu").innerHTML=strTemp;
if(parseInt(mainMenuIdx)!=-1 && parseInt(subMenuIdx)!=-1)
	chkLink(mainMenuIdx);
}
function chkLink(mainIndex)
{
	var strSubTemp="";
	var objMainMenu=document.getElementById("divMainMenu"+mainIndex);
	var objSubMenu=document.getElementById("divSubMenu"+mainIndex);
//	alert(mainIndex);
//	alert(ArrSub[mainIndex].length);
	for(i=0;i<Arr.length;i++)
		document.getElementById("divSubMenu"+i).style.display="none";
//add this code
	if(ArrSub[mainIndex].length){
	document.getElementById("divSubMenu"+mainIndex).style.display="block";
	}
	
	//new code ends here

	for(i=0;i<ArrSub[mainIndex].length;i++)
	{
		strSubTemp+="<table border='0' cellpadding='0' cellspacing='0' width='100%'>";
		strSubTemp+="<TR style='background-color:#f5f5f5;height:22px'><TD valign='top' width='10%'>&nbsp;</TD><TD  style='cursor:hand;cursor:pointer;padding-left:6px;' onclick='openPage1("+mainIndex+","+i+")'>"+ArrSub[mainIndex][i]+"</TD></TR>";
		strSubTemp+="</table>";	
		//alert(ArrSub[mainIndex][i]);
	}
	//alert(strSubTemp);
	objSubMenu.innerHTML=strSubTemp;
//	openPage(mainIndex,0)
//	document.getElementById("div"+mainIndex).style.display="none";
}
function openPage(mainMenuIdx,subMenuIdx)
{

	
		
			window.location.href=ArrLink[mainMenuIdx];
		
	
}

function openPage1(mainMenuIdx,subMenuIdx)
{



			window.location.href=ArrSubLink[mainMenuIdx][subMenuIdx];
	
	
}