/*Top nav roll over   */
var isDOM1 = (document.getElementById ? true : false); 
var isIE4 = ((document.all && !isDOM1) ? true : false);
var isNS4 = (document.layers ? true : false);
var menu
function getRef(id) {
if (isDOM1) return document.getElementById(id);
if (isIE4) return document.all[id];
if (isNS4) return document.layers[id];
}
function getSty(id) {
return (isNS4 ? getRef(id) : getRef(id).style);
} 

// Hide timeout.
var popTimer = 0;
// Array showing highlighted menu items.
var litNow = new Array();
function popOver(menuNum, itemNum) {
clearTimeout(popTimer);
hideAllBut(menuNum);
litNow = getTree(menuNum, itemNum);
changeCol(litNow, true);
targetNum = menu[menuNum][itemNum].target;
if (targetNum > 0) {
thisX = parseInt(menu[menuNum][0].ref.left) + parseInt(menu[menuNum][itemNum].ref.left);
thisY = parseInt(menu[menuNum][0].ref.top) + parseInt(menu[menuNum][itemNum].ref.top);
with (menu[targetNum][0].ref) {
left = parseInt(thisX + menu[targetNum][0].x);
top = parseInt(thisY + menu[targetNum][0].y);
visibility = 'visible';
      }
   }
}
function popOut(menuNum, itemNum) {
if ((menuNum == 0) && !menu[menuNum][itemNum].target)
hideAllBut(0)
else
popTimer = setTimeout('hideAllBut(0)', 500);
}
function getTree(menuNum, itemNum) {

// Array index is the menu number. The contents are null (if that menu is not a parent)
// or the item number in that menu that is an ancestor (to light it up).
itemArray = new Array(menu.length);

while(1) {
itemArray[menuNum] = itemNum;
// If we've reached the top of the hierarchy, return.
if (menuNum == 0) return itemArray;
itemNum = menu[menuNum][0].parentItem;
menuNum = menu[menuNum][0].parentMenu;
   }
}

// Pass an array and a boolean to specify colour change, true = over colour.
function changeCol(changeArray, isOver) {
for (menuCount = 0; menuCount < changeArray.length; menuCount++) {
if (changeArray[menuCount]) {
newCol = isOver ? menu[menuCount][0].overCol : menu[menuCount][0].backCol;
// Change the colours of the div/layer background.
with (menu[menuCount][changeArray[menuCount]].ref) {
if (isNS4) bgColor = newCol;
else backgroundColor = newCol;
         }
      }
   }
}
function hideAllBut(menuNum) {
var keepMenus = getTree(menuNum, 1);
for (count = 0; count < menu.length; count++)
if (!keepMenus[count])
menu[count][0].ref.visibility = 'hidden';
changeCol(litNow, false);
}

// *** MENU CONSTRUCTION FUNCTIONS ***

function Menu(isVert, popInd, x, y, width, overCol, backCol, borderClass, textClass) {
// True or false - a vertical menu?
this.isVert = isVert;
// The popout indicator used (if any) for this menu.
this.popInd = popInd
// Position and size settings.
this.x = x;
this.y = y;
this.width = width;
// Colours of menu and items.
this.overCol = overCol;
this.backCol = backCol;
// The stylesheet class used for item borders and the text within items.
this.borderClass = borderClass;
this.textClass = textClass;
// Parent menu and item numbers, indexed later.
this.parentMenu = null;
this.parentItem = null;
// Reference to the object's style properties (set later).
this.ref = null;
}

function Item(text, href, frame, length, spacing, target) {
this.text = text;
this.href = href;
this.frame = frame;
this.length = length;
this.spacing = spacing;
this.target = target;
// Reference to the object's style properties (set later).
this.ref = null;
}

function Items(text, href, frame, length,width, spacing, target) {
this.text = text;
this.href = href;
this.frame = frame;
this.length = length;
this.width= width;
this.spacing = spacing;
this.target = target;
// Reference to the object's style properties (set later).
this.ref = null;
}
function writeMenus() {
if (!isDOM1 && !isIE4 && !isNS4) return;
//initScroller();
for (currMenu = 0; currMenu < menu.length; currMenu++) with (menu[currMenu][0]) {
// Variable for holding HTML for items and positions of next item.
var str = '', itemX = 0, itemY = 0;

// Remember, items start from 1 in the array (0 is menu object itself, above).
// Also use properties of each item nested in the other with() for construction.
for (currItem = 1; currItem < menu[currMenu].length; currItem++) with (menu[currMenu][currItem]) {
var itemID = 'menu' + currMenu + 'item' + currItem;

// The width and height of the menu item - dependent on orientation!
var w = (isVert ? width : length);
var h = (isVert ? length : width);

// Create a div or layer text string with appropriate styles/properties.
// Thanks to Paul Maden (www.paulmaden.com) for helping debug this in IE4, apparently
// the width must be a miniumum of 3 for it to work in that browser.
if (isDOM1 || isIE4) {
str += '<div id="' + itemID + '" style="position: absolute; left: ' + itemX + '; top: ' + itemY + '; width: ' + w + '; height: ' + h + '; visibility: inherit; ';
if (backCol) str += 'background: ' + backCol + '; ';
str += '" ';
}
if (isNS4) {
str += '<layer id="' + itemID + '" left="' + itemX + '" top="' + itemY + '" width="' +  w + '" height="' + h + '" visibility="inherit" ';
if (backCol) str += 'bgcolor="' + backCol + '" ';
}
if (borderClass) str += 'class="' + borderClass + '" ';

// Add mouseover handlers and finish div/layer.
str += 'onMouseOver="popOver(' + currMenu + ',' + currItem + ')" onMouseOut="popOut(' + currMenu + ',' + currItem + ')">';

// Add contents of item (default: table with link inside).
// In IE/NS6+, add padding if there's a border to emulate NS4's layer padding.
// If a target frame is specified, also add that to the <a> tag.

<!--str += '<table width="' + (w - 8) + '" border="0" cellspacing="0" cellpadding="' + (!isNS4 && borderClass ? 3 : 0) + '"><tr><td align="left" height="' + (h - 7) + '">' + '<a class="' + textClass + '" href="' + href + '"' + (frame ? ' target="' + frame + '">' : '>') + text + '</a></td>';-->
str += '<table style="z-index:1" width="' + (w - 1) + '" border="0" cellspacing="0" cellpadding="' + (!isNS4 && borderClass ? 3 : 0) + '"><tr><td align="left" height="' + (h - 1) + '">' + '<a class="' + textClass + '" href="' + href + '"' + (frame ? ' target="' + frame + '">' : '>') + text + '</a></td>';
if (target > 0) {

// Set target's parents to this menu item.
menu[target][0].parentMenu = currMenu;
menu[target][0].parentItem = currItem;

// Add a popout indicator.
//if (popInd) str += '<td class="' + textClass + '" align="right">' + popInd + '</td>';
if (popInd) str += '<td class="' + textClass + '" align="right">' + popInd + '</td>';
}
str += '</tr></table>' + (isNS4 ? '</layer>' : '</div>');
if (isVert) itemY += length + spacing;
else itemX += length + spacing;
}
if (isDOM1) {
var newDiv = document.createElement('div');
//document.getElementsByTagName('body').item(0).appendChild(newDiv);
var ii=document.getElementById("HoldMe");
ii.appendChild(newDiv);
newDiv.innerHTML = str;
ref = newDiv.style;
ref.position = 'absolute';
ref.visibility = 'hidden';
}

// Insert a div tag to the end of the BODY with menu HTML in place for IE4.
if (isIE4) {
document.body.insertAdjacentHTML('beforeEnd', '<div id="menu' + currMenu + 'div" ' + 'style="position: absolute; visibility: hidden">' + str + '</div>');
ref = getSty('menu' + currMenu + 'div');
}

// In NS4, create a reference to a new layer and write the items to it.
if (isNS4) {
ref = new Layer(0);
ref.document.write(str);
ref.document.close();
}

for (currItem = 1; currItem < menu[currMenu].length; currItem++) {
itemName = 'menu' + currMenu + 'item' + currItem;
if (isDOM1 || isIE4) menu[currMenu][currItem].ref = getSty(itemName);
if (isNS4) menu[currMenu][currItem].ref = ref.document[itemName];
   }
}
with(menu[0][0]) {
ref.left = x;
ref.top = y;
ref.visibility = 'visible';
   }
}

// Syntaxes: *** START EDITING HERE, READ THIS SECTION CAREFULLY! ***
//
// menu[menuNumber][0] = new Menu(Vertical menu? (true/false), 'popout indicator', left, top,
// width, 'mouseover colour', 'background colour', 'border stylesheet', 'text stylesheet');
//
// Left and Top are measured on-the-fly relative to the top-left corner of its trigger, or
// for the root menu, the top-left corner of the page.
//
// menu[menuNumber][itemNumber] = new Item('Text', 'URL', 'target frame', length of menu item,
//  additional spacing to next menu item, number of target menu to popout);
//
// If no target menu (popout) is desired, set it to 0. Likewise, if your site does not use
// frames, pass an empty string as a frame target.
//
// Something that needs explaining - the Vertical Menu setup. You can see most menus below
// are 'true', that is they are vertical, except for the first root menu. The 'length' and
// 'width' of an item depends on its orientation -- length is how long the item runs for in
// the direction of the menu, and width is the lateral dimension of the menu. Just look at
// the examples and tweak the numbers, they'll make sense eventually :).

var menu = new Array();

// Default colours passed to most menu constructors (just passed to functions, not
// a global variable - makes things easier to change later in bulk).
var defOver = '#F8BB7E', defBack = '#FEF5E4';

// Default 'length' of menu items - item height if menu is vertical, width if horizontal.
var defLength = 22;

// Menu 0 is the special, 'root' menu from which everything else arises.
menu[0] = new Array();
// A non-vertical menu with a few different colours and no popout indicator, as an example.
// *** MOVE ROOT MENU AROUND HERE ***  it's positioned at (5, 0) and is 17px high now.
menu[0][0] = new Menu(false, '',0, 91, 22, '#990033', '#990033', '', 'wht11pxb');
// Notice how the targets are all set to nonzero values...
// The 'length' of each of these items is 40, and there is spacing of 10 to the next item.
// Most of the links are set to '#' hashes, make sure you change them to actual files.
menu[0][1] = new Item(    '&nbsp;&nbsp;&nbsp;&nbsp;Home', 'http://www.nasscom.org/default.asp', '', 45, 0, 0);
menu[0][2] = new Item(' |&nbsp;About Us', 'http://www.nasscom.org/aboutus.asp', '',61,0, 1);
//menu[0][3] = new Item('        |&nbsp;Membership', 'http://www.nasscom.org/members.asp', '', 78, 0, 2);
// An example of a link with a target frame/window as well...
menu[0][3] = new Item('    |&nbsp;Groups & Forums', 'groupsandforums.asp', '', 104, 0, 39);
//menu[0][4] = new Item('   |&nbsp; IT Workforce', 'http://www.nasscom.org/itworkforce', '',90, 0, 27);
menu[0][4] = new Item('    |&nbsp;    Publications', 'http://www.nasscom.org/publications.asp', '', 78, 0, 4);
menu[0][5] = new Item('    |&nbsp;    Events', 'http://www.nasscom.org/events.asp', '', 48, 0, 5);
menu[0][6] = new Item('    |&nbsp;   Media Room', 'http://www.nasscom.org/mediaroom.asp', '', 81, 0, 6);
menu[0][7] = new Item('    |&nbsp;   Advantage India', 'http://www.nasscom.org/advantageIndia.asp', '', 99, 0, 7);
menu[0][8] = new Item('    |&nbsp;    Resource Center', 'http://www.nasscom.org/resourcecenter.asp', '', 105, 0, 8);
menu[0][9] = new Item('    |&nbsp;    Contact', 'http://www.nasscom.org/contactus.asp', '', 57, 0, 0);

// File menu.
//About US
menu[1] = new Array();
// The File menu is positioned 0px across and 22 down from its trigger, and is 80 wide.
// All text in this menu has the stylesheet class 'item' -- see the <style> section above.
// We've passed a 'greater-than' sign '>' as a popout indicator. Try an image...?
menu[1][0] = new Menu(true, '>', 3, 22, 80, '#F8BB7E', defBack, 'itemBorder', 'inneritemTextsm');
menu[1][1] = new Items('About NASSCOM ', 'http://www.nasscom.org/artdisplay.asp?cat_id=548', '', 20,150, 0, 0);
menu[1][2] = new Items('President\x27s Message', 'http://www.nasscom.org/artdisplay.asp?cat_id=283', '', 20,150, 0, 0);
menu[1][3] = new Items('Aims & Objectives', 'http://www.nasscom.org/artdisplay.asp?cat_id=12', '', 20,150, 0, 0);
menu[1][4] = new Items('Executive Council', 'http://www.nasscom.org/artdisplay.asp?cat_id=13', '', 20,150, 0, 0);
menu[1][5] = new Items('Past Chairmen', 'http://www.nasscom.org/artdisplay.asp?cat_id=448', '', 20,150, 0, 0);
menu[1][6] = new Items('NASSCOM Secretariat', 'http://www.nasscom.org/artdisplay.asp?cat_id=449', '', 20,150, 0, 0);
menu[1][7] = new Items('Groups & Forums ', 'http://www.nasscom.org/artdisplay.asp?cat_id=138', '', 20,150, 0, 10);
menu[1][8] = new Items('International Affiliations ', 'http://www.nasscom.org/artdisplay.asp?cat_id=15', '', 20,150, 0, 0);
menu[1][9] = new Items('Activities', 'http://www.nasscom.org/artdisplay.asp?cat_id=273', '', 20,150, 0, 11);
menu[1][10] = new Items('Remembering Dewang', 'http://www.nasscom.org/artdisplay.asp?cat_id=284', '', 20,150, 0, 0);
menu[1][11] = new Items('NASSCOM Annual Report', 'http://www.nasscom.org/download/Annual_report.pdf', '', 20,150, 0, 0);
menu[1][12] = new Items('Membership', 'http://www.nasscom.org/members.asp', '', 20,150, 0, 2);
//menu[1][13] = new Items('Contact Us', 'http://www.nasscom.org/contactus.asp', '',20, 150,0, 0);
//menu[1][14] = new Items('Cyber Security', 'http://www.nasscom.org/contactus.asp#cyber', '',20, 150,0, 0);
// Non-zero target means this will trigger a popout -- menu[4] which is the 'Reopen' menu.
// Membership
menu[2] = new Array();
menu[2][0] = new Menu(true,'>' , 150, 0, 80, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
//menu[2][0] = new Menu(true, '>', 3, 22, 80, '#F8BB7E', defBack, 'itemBorder', 'inneritemTextsm');
menu[2][1] = new Items('How To Become A Member', 'http://www.nasscom.org/artdisplay.asp?cat_id=105', '', 20,165, 0, 26);
menu[2][2] = new Items('Benefits To Members', 'http://www.nasscom.org/artdisplay.asp?cat_id=104', '', 20,165, 0, 0);
menu[2][3] = new Items('Member News', 'http://www.nasscom.org/artdisplay.asp?cat_id=106', '', 20,165, 0, 0);
menu[2][4] = new Items('Membership Strength', 'http://www.nasscom.org/artdisplay.asp?cat_id=109', '', 20,165, 0, 0);
menu[2][5] = new Items('NASSCOM Activities 2004 - 05', 'http://www.nasscom.org/download/Annual_Report.pdf#page=11', '', 20,165, 0, 0);
// Trusted Sourcing
menu[3] = new Array();
menu[3][0] = new Menu(true, '>', 3, 22, 80, defOver, defBack, 'itemBorder', 'inneritemTextsm');
menu[3][1] = new Items('Secure Focus', 'http://www.nasscom.org/artdisplay.asp?art_id=2791', '', 20,145, 0, 12);
menu[3][2] = new Items('Policies & Regulations', 'http://www.nasscom.org/artdisplay.asp?cat_id=678', '', 20,145, 0, 13);
menu[3][3] = new Items('NASSCOM Initiatives', 'http://www.nasscom.org/artdisplay.asp?cat_id=682', '', 20,145, 0, 14);
menu[3][4] = new Items('Toolkit', 'http://www.nasscom.org/artdisplay.asp?cat_id=663', '', 20,145, 0, 15);


// Publications
menu[4] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[4][0] = new Menu(true, '', 3, 22, 80, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[4][1] = new Items('Market Intelligence Service ', 'http://www.nasscom.org/artdisplay.asp?cat_id=307', '', 20,160, 0, 0);
menu[4][2] = new Items('Research Reports', 'http://www.nasscom.org/artdisplay.asp?cat_id=306', '',20,160, 0, 0);
menu[4][3] = new Items('Directories', 'http://www.nasscom.org/artdisplay.asp?cat_id=305', '', 20,160, 0, 0);


// Events
menu[5] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[5][0] = new Menu(true, '', 3, 22, 80, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[5][1] = new Items('Forthcoming Events', 'http://www.nasscom.org/forthcoming.asp', '', 20,140, 0, 0);
menu[5][2] = new Items('Past Events', 'http://www.nasscom.org/pastevents.asp', '', 20,140, 0, 0);
//menu[5][3] = new Items('Contact Us', 'http://www.nasscom.org/contactus.asp', '', 20,140, 0, 0);

//menu[5][6] = new Items('General', 'artdisplay.aspx?cat_id=446', '', 25,115, 0, 0);
// Media Room
menu[6] = new Array();
// Leftwards popout with a negative x and y relative to its trigger.
menu[6][0] = new Menu(true,'>' , 3, 22, 80, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
//menu[6][0] = new Menu(true,'>' , 150, 0, 80, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
menu[6][1] = new Items('Press Releases', 'http://www.nasscom.org/artdisplay.asp?cat_id=92', '', 20,130, 0, 0);
menu[6][2] = new Items('Press Coverage ', 'http://www.nasscom.org/artdisplay.asp?cat_id=90', '', 20,130, 0, 0);
//menu[6][3] = new Items('Industry Coverage', 'http://www.nasscom.org/artdisplay.asp?cat_id=89', '', 20,130, 0, 0);
menu[6][3] = new Items('Press Kit', 'http://www.nasscom.org/artdisplay.asp?cat_id=91', '', 20,130, 0, 16);
menu[6][4] = new Items('Subscribe', 'http://www.nasscom.org/subscribe.asp', '', 20,130, 0, 0);
menu[6][5] = new Items('NASSCOM Newsline', 'http://www.nasscom.org/nasscomnewsline.asp', '', 20,130, 0, 0);
menu[6][6] = new Items('Sounding Board', 'http://www.nasscom.org/artdisplay.asp?cat_id=398', '', 20,130, 0, 0);
menu[6][7] = new Items('Whats New', 'http://www.nasscom.org/artdisplay.asp?cat_id=349', '', 20,130, 0, 0);



//leftwards
// Advantage India
menu[7] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[7][0] = new Menu(true,'>' , 3, 22, 80, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[7][1] = new Items('Why India', 'http://www.nasscom.org/artdisplay.asp?cat_id=28', '', 20,160,0, 17);
menu[7][2] = new Items('Infrastructure Scenario', 'http://www.nasscom.org/artdisplay.asp?cat_id=402', '', 20,160,0, 18);
menu[7][3] = new Items('Success Stories', 'http://www.nasscom.org/artdisplay.asp?cat_id=26', '', 20,160,0, 0);
menu[7][4] = new Items('Customer Speak', 'http://www.nasscom.org/artdisplay.asp?cat_id=418', '', 20,160,0, 0);
menu[7][5] = new Items('Testimonials', 'http://www.nasscom.org/artdisplay.asp?cat_id=27', '', 20,160,0, 0);
menu[7][6] = new Items('In The Media', 'http://www.nasscom.org/artdisplay.asp?cat_id=25', '', 20,160,0, 0);
menu[7][7] = new Items('Made In India', 'http://www.nasscom.org/artdisplay.asp?cat_id=431', '', 20,160,0, 0);
menu[7][8] = new Items('Face To Face', 'http://www.nasscom.org/artdisplay.asp?cat_id=337', '', 20,160,0, 0);
menu[7][9] = new Items('Business In India', 'http://www.nasscom.org/BusinessInIndia.asp', '', 20,160,0, 25);
menu[7][10] = new Items('Inside India', 'http://www.nasscom.org/artdisplay.asp?cat_id=715', '', 20,160,0, 0);
menu[7][11] = new Items('Women In IT', 'http://www.nasscom.org/artdisplay.asp?cat_id=817', '', 20,160,0, 0);

menu[8] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[8][0] = new Menu(true,'>' , 3, 22, 105, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[8][1] = new Items('IT- ITES Industry', 'http://www.nasscom.org/artdisplay.asp?cat_id=947', '', 20,230, 0, 19);
menu[8][2] = new Items('IT Software &amp; Services Market', 'http://www.nasscom.org/artdisplay.asp?cat_id=948', '', 20,230, 0, 22);
menu[8][3] = new Items('ITES - BPO Market', 'http://www.nasscom.org/artdisplay.asp?cat_id=791', '', 20,230, 0, 20);
menu[8][4] = new Items('Hardware Industry', 'http://www.nasscom.org/artdisplay.asp?cat_id=949', '', 20,230, 0, 23);
menu[8][5] = new Items('Domestic Market', 'http://www.nasscom.org/artdisplay.asp?cat_id=950', '', 20,230, 0, 21);
menu[8][6] = new Items('Security Environment', 'http://www.nasscom.org/artdisplay.asp?cat_id=951', '', 20,230, 0, 24);
//menu[8][7] = new Items('NASSCOM Fast50', 'http://www.nasscom.org/artdisplay.asp?cat_id=815', '', 20,230, 0, 0);
menu[8][7] = new Items('Knowledge Professionals', 'http://www.nasscom.org/artdisplay.asp?cat_id=952', '', 20,230, 0, 40);



menu[9] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[9][0] = new Menu(true,'' , 215, 0, 80, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
//menu[9][0] = new Menu(true,'' , 115, 0, 80, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
//menu[9][1] = new Items('Appointments', 'http://www.nasscom.org/Interact/appointments.aspx', '', 25,120, 0, 0);
//menu[9][2] = new Items('Awards ', 'Interact/achievements.aspx', '', 25,120, 0, 0);
//menu[9][2] = new Items(' Share learnings  ', 'ViewShareLearning.aspx', '', 25,165, 0, 0);

menu[10] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[10][0] = new Menu(true,'>' , 150, 0, 80, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[10][1] = new Items('Overview', 'http://www.nasscom.org/artdisplay.asp?cat_id=138', '', 20,160, 0, 0);
menu[10][2] = new Items('ITES-BPO Forum', 'http://www.nasscom.org/artdisplay.asp?cat_id=266', '', 20,160, 0, 0);
menu[10][3] = new Items('Emerging Companies Forum', 'http://www.nasscom.org/artdisplay.asp?cat_id=420', '', 20,160, 0, 0);
menu[10][4] = new Items('Product Forum', 'http://www.nasscom.org/artdisplay.asp?cat_id=421', '', 20,160, 0, 0);
menu[10][5] = new Items('Quality Forum	', 'http://www.nasscom.org/artdisplay.asp?cat_id=268', '', 20,160, 0, 0);
menu[10][6] = new Items('Security Forum', 'http://www.nasscom.org/artdisplay.asp?cat_id=422', '', 20,160, 0, 0);
menu[10][7] = new Items('IT Workforce Development', 'http://www.nasscom.org/artdisplay.asp?cat_id=423', '', 20,160, 0, 0);
menu[10][8] = new Items('IT Innovation in India ', 'http://www.nasscom.org/artdisplay.asp?cat_id=899', '', 20,160, 0, 0);
menu[10][9] = new Items('Domestic Market Forum', 'http://www.nasscom.org/artdisplay.asp?cat_id=900', '', 20,160, 0, 0);
menu[10][10] = new Items('Engineering Services Forum', 'http://www.nasscom.org/artdisplay.asp?cat_id=901', '', 20,160, 0, 0);
menu[11] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[11][0] = new Menu(true,'>' , 150, 0, 80, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[11][1] = new Items('Overview', 'http://www.nasscom.org/artdisplay.asp?cat_id=273', '', 20,240, 0, 0);
menu[11][2] = new Items(' Campaign Against Piracy	', 'http://www.nasscom.org/artdisplay.asp?cat_id=17', '', 20,240, 0, 0);
menu[11][3] = new Items('Building The India Brand In Software', 'http://www.nasscom.org/artdisplay.asp?cat_id=269', '', 20,240, 0, 0);
menu[11][4] = new Items('Database Creation', 'http://www.nasscom.org/artdisplay.asp?cat_id=18', '', 20,240, 0, 0);
menu[11][5] = new Items(' Events', 'http://www.nasscom.org/artdisplay.asp?cat_id=19', '', 20,240, 0, 0);
menu[11][6] = new Items(' Maintaining High Quality', 'http://www.nasscom.org/artdisplay.asp?cat_id=21', '', 20,240, 0, 0);
menu[11][7] = new Items('Member Services', 'http://www.nasscom.org/artdisplay.asp?cat_id=22', '', 20,240, 0, 0);
menu[11][8] = new Items('NASSCOM Domestic TradeNet', 'http://www.nasscom.org/artdisplay.asp?cat_id=272', '', 20,240, 0, 0);
menu[11][9] = new Items('Partnership With Government', 'http://www.nasscom.org/artdisplay.asp?cat_id=23', '', 20,240, 0, 0);
menu[11][10] = new Items('Promoting Interests', 'http://www.nasscom.org/artdisplay.asp?cat_id=24', '', 20,240, 0, 0);
menu[11][11] = new Items('Research', 'http://www.nasscom.org/artdisplay.asp?cat_id=270', '', 20,240, 0, 0);

//TS secure Focus submenu
menu[12] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[12][0] = new Menu(true,'>' , 145, 0, 80, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[12][1] = new Items(' In Focus', 'http://www.nasscom.org/artdisplay.asp?cat_id=655', '', 20,80, 0);
menu[12][2] = new Items(' News Post', 'http://www.nasscom.org/artdisplay.asp?cat_id=656', '', 20,80, 0, 0); //it was 22 at the end for sub //menu
menu[12][3] = new Items(' Talk Spot', 'http://www.nasscom.org/artdisplay.asp?cat_id=654', '', 20,80, 0, 0);
menu[12][4] = new Items(' Expert Voice', 'http://www.nasscom.org/artdisplay.asp?cat_id=713', '', 20,80, 0, 0);

//TS Policies & Regulations submenu
menu[13] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[13][0] = new Menu(true,'>' , 145, 0, 80, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[13][1] = new Items('Overview', 'http://www.nasscom.org/artdisplay.asp?cat_id=678', '', 20,120, 0, 0);
menu[13][2] = new Items('Australia ', 'http://www.nasscom.org/artdisplay.asp?cat_id=710', '', 20,120, 0, 0);
menu[13][3] = new Items('Canada', 'http://www.nasscom.org/artdisplay.asp?cat_id=709', '', 20,120, 0, 0);
menu[13][4] = new Items('EU ', 'http://www.nasscom.org/artdisplay.asp?cat_id=708', '', 20,120, 0, 0);
menu[13][5] = new Items('India ', 'http://www.nasscom.org/artdisplay.asp?cat_id=712', '', 20,120, 0, 0);
menu[13][6] = new Items('UK ', 'http://www.nasscom.org/artdisplay.asp?cat_id=680', '', 20,120, 0, 0);
menu[13][7] = new Items('US ', 'http://www.nasscom.org/artdisplay.asp?cat_id=679', '', 20,120, 0, 0);
menu[13][8] = new Items('Country Comparision', 'http://www.nasscom.org/artdisplay.asp?cat_id=681', '', 20,120, 0, 0);

//TS NASSCOM Initiatives
menu[14] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[14][0] = new Menu(true,'>' , 145, 0, 80, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[14][1] = new Items('Overview ', 'http://www.nasscom.org/artdisplay.asp?cat_id=682', '', 20,160, 0, 0);
menu[14][2] = new Items('4E-Initiative  ', 'http://www.nasscom.org/artdisplay.asp?cat_id=683', '', 20,160, 0, 0);
menu[14][3] = new Items(' Mumbai Cyber Lab Initiative  ', 'http://www.nasscom.org/artdisplay.asp?cat_id=684', '', 20,160, 0, 0);
menu[14][4] = new Items(' Events', 'http://www.nasscom.org/artdisplay.asp?cat_id=685', '', 20,160, 0, 0);
menu[14][5] = new Items(' National Advisory Board', 'http://www.nasscom.org/download/NASSCOMNationalAdvisoryBoard.ppt', '', 20,160, 0, 0);

//TS Toolkit submenu
menu[15] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[15][0] = new Menu(true,'>' , 145, 0, 80, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[15][1] = new Items('White Papers', 'http://www.nasscom.org/artdisplay.asp?cat_id=663', '', 20,200,0, 0);
menu[15][2] = new Items('NASSCOM Reports & Publications', 'http://www.nasscom.org/artdisplay.asp?cat_id=660', '', 20,200,0, 0);
menu[15][3] = new Items('Protocols & Standards', 'http://www.nasscom.org/artdisplay.asp?cat_id=686', '', 20,200,0, 0);
menu[15][4] = new Items('List Of Security Solution Providers', 'http://www.nasscom.org/artdisplay.asp?cat_id=687', '', 20,200,0, 0);
menu[15][5] = new Items('External Links', 'http://www.nasscom.org/artdisplay.asp?cat_id=688', '', 20,200,0, 0);
menu[15][6] = new Items(' Professional Certifications', 'http://www.nasscom.org/artdisplay.asp?cat_id=689', '', 20,200,0, 0);
menu[15][7] = new Items('Technologies', 'http://www.nasscom.org/artdisplay.asp?cat_id=690', '', 20,200,0, 0);
menu[15][8] = new Items('Factsheets', 'http://www.nasscom.org/artdisplay.asp?cat_id=424', '', 20,200,0, 0);
menu[15][9] = new Items('Resources', 'http://www.nasscom.org/artdisplay.asp?cat_id=717', '', 20,200,0, 0);

// Media Room --> Press Kit submenu
menu[16] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[16][0] = new Menu(true,'>' , -110, 0, 80, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
//menu[16][0] = new Menu(true,'>' , 131, 0, 100, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[16][1] = new Items('Overview', 'http://www.nasscom.org/artdisplay.asp?cat_id=91', '', 20,110,0, 0);
menu[16][2] = new Items(' Logos', 'http://www.nasscom.org/artdisplay.asp?cat_id=98', '', 20,110,0, 0);
menu[16][3] = new Items(' Key Profiles', 'http://www.nasscom.org/artdisplay.asp?cat_id=99', '', 20,110,0, 0);
menu[16][4] = new Items(' NASSCOM Profile', 'http://www.nasscom.org/artdisplay.asp?cat_id=265', '', 20,110,0, 0);
menu[16][5] = new Items(' Factsheets', 'http://www.nasscom.org/artdisplay.asp?cat_id=424', '', 20,110,0, 0);
//menu[16][6] = new Items(' Media Update', 'http://www.nasscom.org/artdisplay.asp?cat_id=447', '', 20,110,0, 0);

//Advantage India--> Why India submenu
menu[17] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[17][0] = new Menu(true,'>' , -160, 0, 120, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[17][1] = new Items('Overview', 'http://www.nasscom.org/artdisplay.asp?cat_id=28', '', 20,160,0, 0);
menu[17][2] = new Items('Strengths', 'http://www.nasscom.org/artdisplay.asp?cat_id=36', '', 20,160,0, 0);
menu[17][3] = new Items('Economy', 'http://www.nasscom.org/artdisplay.asp?cat_id=32', '', 20,160,0, 0);
menu[17][4] = new Items('Taxation', 'http://www.nasscom.org/artdisplay.asp?cat_id=37', '', 20,160,0, 0);
menu[17][5] = new Items('Quality', 'http://www.nasscom.org/artdisplay.asp?cat_id=35', '', 20,160,0, 0);
menu[17][6] = new Items('Competitive Costs', 'http://www.nasscom.org/artdisplay.asp?cat_id=31', '', 20,160,0, 0);
menu[17][7] = new Items('Knowledge Professionals', 'http://www.nasscom.org/artdisplay.asp?cat_id=303', '', 20,160,0, 0);

//Advantage India--> Infrastructure Scenario
menu[18] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[18][0] = new Menu(true,'>' , -70, 0, 80, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[18][1] = new Items('Overview', 'http://www.nasscom.org/artdisplay.asp?cat_id=402', '', 20,70,0, 0);
menu[18][2] = new Items('Telecom', 'http://www.nasscom.org/artdisplay.asp?cat_id=401', '',20,70,0, 0);
menu[18][3] = new Items('Power', 'http://www.nasscom.org/artdisplay.asp?cat_id=403', '',20,70,0, 0);
menu[18][4] = new Items('Roads', 'http://www.nasscom.org/artdisplay.asp?cat_id=404', '',20,70,0, 0);
menu[18][5] = new Items('IT Parks', 'http://www.nasscom.org/artdisplay.asp?cat_id=547', '',20,70,0, 0);
//Resource Center==>IT - ITES Industry
menu[19] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[19][0] = new Menu(true,'>' , -150, 0, 80, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
/*menu[19][1] = new Items('Overview', 'http://www.nasscom.org/artdisplay1.asp?cat_id=947', '', 20,150,0, 0);*/
menu[19][1] = new Items('Key Highlights', 'http://www.nasscom.org/artdisplay.asp?cat_id=953', '', 20,150,0, 0);
menu[19][2] = new Items('Facts & Figures', 'http://www.nasscom.org/artdisplay.asp?cat_id=954', '', 20,150,0, 0);
/*menu[19][4] = new Items('India Vis A Vis Global IT', 'http://www.nasscom.org/artdisplay.asp?cat_id=797', '', 20,150,0, 0);
menu[19][5] = new Items('Future Focus', 'http://www.nasscom.org/artdisplay.asp?cat_id=798', '', 20,150,0, 0);*/

//Resource Center-->IT Software & Services Market
menu[22] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[22][0] = new Menu(true,'>' , -160, 0, 80, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
/*menu[22][1] = new Items('Overview', 'http://www.nasscom.org/artdisplay1.asp?cat_id=948', '', 20,160,0, 0);*/
menu[22][1] = new Items('Key Highlights', 'http://www.nasscom.org/artdisplay.asp?cat_id=956', '', 20,160,0, 0);
/*menu[22][3] = new Items('Future Focus', 'http://www.nasscom.org/artdisplay.asp?cat_id=805', '', 20,160,0, 0);*/


//Resource Center -->ITES-BPO Market
menu[20] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[20][0] = new Menu(true,'>' , -200, 0, 145, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
/*menu[20][1] = new Items('Overview', 'http://www.nasscom.org/artdisplay1.asp?cat_id=799', '', 20,200,0, 0);*/
menu[20][1] = new Items('Key Highlights', 'http://www.nasscom.org/artdisplay.asp?cat_id=962', '', 20,200,0, 0);
/*menu[20][3] = new Items('Growth Drivers', 'http://www.nasscom.org/artdisplay.asp?cat_id=801', '', 20,200,0, 0);
menu[20][4] = new Items('High Growth Areas', 'http://www.nasscom.org/artdisplay.asp?cat_id=802', '', 20,200,0, 0);*/


//Resource Center-->Hardware Industry
menu[23] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[23][0] = new Menu(true,'>' , -230, 0, 80, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
/*menu[23][1] = new Items('Overview ', 'http://www.nasscom.org/artdisplay1.asp?cat_id=949', '', 20,230,0,0);*/
menu[23][1] = new Items('Key Highlights', 'http://www.nasscom.org/artdisplay.asp?cat_id=956', '', 20,230,0, 0);


//Resource Center-->Domestic Market
menu[21] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[21][0] = new Menu(true,'>' , -220, 0, 200, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
/*menu[21][1] = new Items('Overview', 'http://www.nasscom.org/artdisplay1.asp?cat_id=950', '', 20,220, 0, 0);*/
menu[21][1] = new Items('IT Spending', 'http://www.nasscom.org/artdisplay.asp?cat_id=957', '', 20,220, 0, 0);
/*menu[21][3] = new Items('Offshore Product Development', 'http://www.nasscom.org/artdisplay.asp?cat_id=781', '', 20,220, 0, 0);
menu[21][4] = new Items('List of R &amp; D Undertakings In India', 'http://www.nasscom.org/artdisplay.asp?cat_id=786', '', 20,220, 0, 0);*/



//Resource Center-->Security Environment
menu[24] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[24][0] = new Menu(true,'>' , -250, 0, 180, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
/*menu[24][1] = new Items('Overview', 'http://www.nasscom.org/artdisplay1.asp?art_id=5230', '', 20,250,0, 0);*/
menu[24][1] = new Items('NASSCOMs Security Initiatives', 'http://www.nasscom.org/artdisplay.asp?cat_id=958', '', 20,250,0, 0);

/*
//Resource Center==>indian IT Industry
menu[19] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[19][0] = new Menu(true,'>' , -150, 0, 80, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[19][1] = new Items('Overview', 'http://www.nasscom.org/artdisplay.asp?cat_id=794', '', 20,150,0, 0);
menu[19][2] = new Items('Industry Trends (2003-04)', 'http://www.nasscom.org/artdisplay.asp?cat_id=795', '', 20,150,0, 0);
menu[19][3] = new Items('Global Industry Trends', 'http://www.nasscom.org/artdisplay.asp?cat_id=796', '', 20,150,0, 0);
menu[19][4] = new Items('India Vis A Vis Global IT', 'http://www.nasscom.org/artdisplay.asp?cat_id=797', '', 20,150,0, 0);
menu[19][5] = new Items('Future Focus', 'http://www.nasscom.org/artdisplay.asp?cat_id=798', '', 20,150,0, 0);

//Resource Center-->ITES-BPO submenu
menu[22] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[22][0] = new Menu(true,'>' , -160, 0, 80, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[22][1] = new Items('Overview', 'http://www.nasscom.org/artdisplay.asp?cat_id=803', '', 20,160,0, 0);
menu[22][2] = new Items('Industry Trends (2003-04)', 'http://www.nasscom.org/artdisplay.asp?cat_id=804', '', 20,160,0, 0);
menu[22][3] = new Items('Future Focus', 'http://www.nasscom.org/artdisplay.asp?cat_id=805', '', 20,160,0, 0);


//Resource Center -->IT Software Services
menu[20] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[20][0] = new Menu(true,'>' , -200, 0, 145, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[20][1] = new Items('Overview', 'http://www.nasscom.org/artdisplay.asp?cat_id=799', '', 20,200,0, 0);
menu[20][2] = new Items('Indian ITES-BPO Trends (2003-04)', 'http://www.nasscom.org/artdisplay.asp?cat_id=800', '', 20,200,0, 0);
menu[20][3] = new Items('Growth Drivers', 'http://www.nasscom.org/artdisplay.asp?cat_id=801', '', 20,200,0, 0);
menu[20][4] = new Items('High Growth Areas', 'http://www.nasscom.org/artdisplay.asp?cat_id=802', '', 20,200,0, 0);


//Resource Center-->Internet & Ecommerce
menu[23] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[23][0] = new Menu(true,'>' , -230, 0, 80, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[23][1] = new Items('Overview ', 'http://www.nasscom.org/artdisplay.asp?cat_id=775', '', 20,230,0,0);
menu[23][2] = new Items('Hardware Industry Trends (2003-04)', 'http://www.nasscom.org/artdisplay.asp?cat_id=806', '', 20,230,0, 0);


//Resource Center-->Indian Domestic IT Mkt submenu
menu[21] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[21][0] = new Menu(true,'>' , -220, 0, 200, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[21][1] = new Items('Overview', 'http://www.nasscom.org/artdisplay.asp?cat_id=779', '', 20,220, 0, 0);
menu[21][2] = new Items('Embedded Software And Systems', 'http://www.nasscom.org/artdisplay.asp?cat_id=780', '', 20,220, 0, 0);
menu[21][3] = new Items('Offshore Product Development', 'http://www.nasscom.org/artdisplay.asp?cat_id=781', '', 20,220, 0, 0);
menu[21][4] = new Items('List of R &amp; D Undertakings In India', 'http://www.nasscom.org/artdisplay.asp?cat_id=786', '', 20,220, 0, 0);



//Resource Center-->Security Environment
menu[24] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[24][0] = new Menu(true,'>' , -250, 0, 180, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[24][1] = new Items('Top 20 Software Companies 2004-05', 'http://www.nasscom.org/artdisplay.asp?art_id=4413#top20', '', 20,250,0, 0);
menu[24][2] = new Items('Indian IT - ITES Industry', 'http://www.nasscom.org/artdisplay.asp?cat_id=809', '', 20,250,0, 0);
menu[24][3] = new Items('IT Software & Services Market', 'http://www.nasscom.org/artdisplay.asp?cat_id=810', '', 20,250,0, 0);
menu[24][4] = new Items(' ITES - BPO Market', 'http://www.nasscom.org/artdisplay.asp?cat_id=811', '', 20,250,0, 0);
menu[24][5] = new Items(' Indian Hardware Industry', 'http://www.nasscom.org/artdisplay.asp?cat_id=812', '', 20,250,0, 0);
menu[24][6] = new Items(' NASSCOM Ranking of Third Party Players', 'http://www.nasscom.org/artDisplay.asp?art_id=4400', '', 20,250,0, 0);

//menu[24][5] = new Items('  Products and Embedded Software  ', 'http://www.nasscom.org/artdisplay.asp?cat_id=411', '', 20,210,0, 0);
//menu[24][6] = new Items('  Archives  ', 'http://www.nasscom.org/artdisplay.asp?cat_id=665', '', 20,210,0, 0);
*/
//Resource Center-->Knowledge Professionals
menu[40] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[40][0] = new Menu(true,'>' , -180, 0, 180, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
/*menu[40][1] = new Items('Overview', 'http://www.nasscom.org/artdisplay1.asp?art_id=5231', '', 20,180,0, 0);*/
menu[40][1] = new Items('Key Highlights', 'http://www.nasscom.org/artdisplay.asp?cat_id=959', '', 20,180,0, 0);

menu[25] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[25][0] = new Menu(true,'>' , -190, 0, 80, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[25][1] = new Items('Setting Up An IT Company', 'artdisplay.asp?art_id=4416', '', 20,190,0, 33);
menu[25][2] = new Items('IT Policies', 'artdisplay.asp?cat_id=821', '', 20,190,0, 34);
menu[25][3] = new Items(' Protecting IPR ', 'artdisplay.asp?cat_id=858', '', 20,190,0, 35);
menu[25][4] = new Items(' Quality', 'artdisplay.asp?cat_id=823', '', 20,190,0, 36);
menu[25][5] = new Items(' Laws and Regulations', 'artdisplay.asp?cat_id=824', '', 20,190,0, 37);
menu[25][6] = new Items(' Venture Funding', 'artdisplay.asp?cat_id=825', '', 20,190,0, 38);
menu[25][7] = new Items('Software Licensing Best Practice', 'artdisplay.asp?cat_id=890', '', 20,190,0, 0);

menu[26] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[26][0] = new Menu(true,'>' ,166, 0, 80, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[26][1] = new Items('Membership Application Form', 'http://www.nasscom.org/member-registration.asp', '', 20,167,0, 0);
menu[26][2] = new Items('FAQs', 'http://www.nasscom.org/artdisplay.asp?art_id=1826', '', 20,167,0, 0);
//menu[26][3] = new Items('Your suggestions   ', 'yoursuggMovies.aspx', '', 25,130,0, 0);
//menu[26][4] = new Items(' Buying corner ', 'artdisplay.aspx?cat_id=318', '', 25,130,0, 0);

menu[27] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...

menu[27][0] = new Menu(true,'>' , 3, 22, 80, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[27][1] = new Items('Indian Scenario ', 'artdisplay.asp?cat_id=723', '', 20,140,0, 28);
menu[27][2] = new Items('About IT Workforce', 'artdisplay.asp?cat_id=724', '', 20,140,0, 29);
menu[27][3] = new Items('IT Careers', 'artdisplay.asp?cat_id=725', '', 20,140,0, 30);
menu[27][4] = new Items('Workshops &amp; Forums', 'artdisplay.asp?cat_id=726', '', 20,140,0, 31);
menu[27][5] = new Items('Knowledge Center', 'artdisplay.asp?cat_id=727', '', 20,140,0, 32);

menu[28] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[28][0] = new Menu(true,'>' , 140, 0, 80, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[28][1] = new Items('Overview', 'http://www.nasscom.org/artdisplay.asp?cat_id=731', '', 20,100, 0, 0);
menu[28][2] = new Items('Demand', 'http://www.nasscom.org/artdisplay.asp?cat_id=732', '', 20,100, 0, 0);
menu[28][3] = new Items('Profile', 'http://www.nasscom.org/artdisplay.asp?cat_id=733', '', 20,100, 0, 0);
menu[28][4] = new Items('Challenges', 'http://www.nasscom.org/artdisplay.asp?cat_id=734', '', 20,100, 0, 0);

menu[29] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[29][0] = new Menu(true,'>' , 140, 0, 80, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[29][1] = new Items('Concern Areas', 'http://www.nasscom.org/artdisplay.asp?cat_id=728', '', 20,130, 0, 0);
menu[29][2] = new Items('Recommendations', 'http://www.nasscom.org/artdisplay.asp?cat_id=729', '', 20,130, 0, 0);
menu[29][3] = new Items('Communiqué', 'http://www.nasscom.org/artdisplay.asp?cat_id=891', '', 20,130, 0, 0);

menu[30] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[30][0] = new Menu(true,'>' , 140, 0, 80, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[30][1] = new Items('Salary Benchmarks', 'http://www.nasscom.org/artdisplay.asp?cat_id=737', '', 20,130, 0, 0);
menu[30][2] = new Items('Soft Skills', 'http://www.nasscom.org/artdisplay.asp?cat_id=750', '', 20,130, 0, 0);


menu[31] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[31][0] = new Menu(true,'>' , 140, 0, 80, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[31][1] = new Items('Initiatives Snapshot', 'http://www.nasscom.org/artdisplay.asp?cat_id=743', '', 20,130, 0, 0);
menu[31][2] = new Items('HR IT Development', 'http://www.nasscom.org/artdisplay.asp?cat_id=744', '', 20,130, 0, 0);
menu[31][3] = new Items('Connect With Us', 'http://www.nasscom.org/artdisplay.asp?cat_id=756', '', 20,130, 0, 0);
menu[31][4] = new Items('MoUs', 'http://www.nasscom.org/artdisplay.asp?cat_id=888', '', 20,130, 0, 0);
menu[31][5] = new Items('IT Faculty Retraining', 'http://www.nasscom.org/artdisplay.asp?cat_id=889', '', 20,130, 0, 0);

menu[32] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[32][0] = new Menu(true,'>' , 140, 0, 80, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[32][1] = new Items('Case Studies', 'http://www.nasscom.org/artdisplay.asp?cat_id=740', '', 20,190, 0, 0);
menu[32][2] = new Items('News Links', 'http://www.nasscom.org/artdisplay.asp?cat_id=748', '', 20,190, 0, 0);
menu[32][3] = new Items('Reports &amp; Publications', 'http://www.nasscom.org/artdisplay.asp?cat_id=753', '', 20,190, 0, 0);
menu[32][4] = new Items('HR Foundation For IT Industry', 'http://www.nasscom.org/artdisplay.asp?cat_id=755', '', 20,190, 0, 0);
menu[32][5] = new Items('List of Entrepreneur Parks', 'http://www.nasscom.org/artdisplay.asp?cat_id=807', '', 20,190, 0, 0);
menu[32][6] = new Items('Technology Business Incubators', 'http://www.nasscom.org/artdisplay.asp?cat_id=808', '', 20,190, 0, 0);

menu[33] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[33][0] = new Menu(true,'>' , -150, 0, 80, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[33][1] = new Items('Provisions under ECR', 'http://www.nasscom.org/artdisplay.asp?cat_id=826', '', 20,150, 0, 0);
menu[33][2] = new Items('Telecom Policy Changes', 'http://www.nasscom.org/artdisplay.asp?cat_id=827', '', 20,150, 0, 0);
//menu[33][3] = new Items('Connect With Us', 'http://www.nasscom.org/artdisplay.asp?cat_id=756', '', 20,130, 0, 0);

menu[34] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[34][0] = new Menu(true,'>' , -90, 0, 80, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[34][1] = new Items('Overview', 'http://www.nasscom.org/artdisplay.asp?cat_id=828', '', 20,90, 0, 0);
menu[34][2] = new Items('Useful Links', 'http://www.nasscom.org/artdisplay.asp?cat_id=829', '', 20,90, 0, 0);

menu[35] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[35][0] = new Menu(true,'>' , -160, 0, 80, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[35][1] = new Items('Overview', 'http://www.nasscom.org/artdisplay.asp?cat_id=859', '', 20,160, 0, 0);
menu[35][2] = new Items('IPR Law in India', 'http://www.nasscom.org/artdisplay.asp?cat_id=860', '', 20,160, 0, 0);
menu[35][3] = new Items('Regulatory Environment in India','http://www.nasscom.org/artdisplay.asp?cat_id=861', '', 20,160, 0, 0);
menu[35][4] = new Items('Anti-Piracy Activities', 'http://www.nasscom.org/artdisplay.asp?cat_id=862', '', 20,160, 0, 0);
menu[35][5] = new Items('Anti-Piracy Hotline', 'http://www.nasscom.org/artdisplay.asp?cat_id=863', '', 20,160, 0, 0);
menu[35][6] = new Items('Software Copyright FAQs', 'http://www.nasscom.org/artdisplay.asp?cat_id=864', '', 20,160, 0, 0);
menu[35][7] = new Items('International Conventions', 'http://www.nasscom.org/artdisplay.asp?cat_id=865', '', 20,160, 0, 0);

menu[36] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[36][0] = new Menu(true,'>' , -160, 0, 80, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[36][1] = new Items('Overview', 'http://www.nasscom.org/artdisplay.asp?cat_id=838', '', 20,160, 0, 0);
menu[36][2] = new Items('Global Quality Certifications', 'http://www.nasscom.org/artdisplay.asp?cat_id=839', '', 20,160, 0, 0);
menu[36][3] = new Items('Cost and Quality Advantage','http://www.nasscom.org/artdisplay.asp?cat_id=840', '', 20,160, 0, 0);
menu[36][4] = new Items('NASSCOM Initiatives', 'http://www.nasscom.org/artdisplay.asp?cat_id=841', '', 20,160, 0, 0);
menu[36][5] = new Items('Quality Certified Companies', 'http://www.nasscom.org/QualityCertified.asp', '', 20,160, 0, 0);

menu[37] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[37][0] = new Menu(true,'>' , -160, -105, 80, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[37][1] = new Items('Overview', 'http://www.nasscom.org/artdisplay.asp?cat_id=843', '', 20,160, 0, 0);
menu[37][2] = new Items('Custom Related Issues', 'http://www.nasscom.org/artdisplay.asp?cat_id=844', '', 20,160, 0, 0);
menu[37][3] = new Items('Income Tax','http://www.nasscom.org/artdisplay.asp?cat_id=845', '', 20,160, 0, 0);
menu[37][4] = new Items('Service Tax', 'http://www.nasscom.org/artdisplay.asp?cat_id=846', '', 20,160, 0, 0);
menu[37][5] = new Items('Other Taxes', 'http://www.nasscom.org/artdisplay.asp?cat_id=847', '', 20,160, 0, 0);
menu[37][6] = new Items('SEZ', 'http://www.nasscom.org/artdisplay.asp?cat_id=848', '', 20,160, 0, 0);
menu[37][7] = new Items('Foreign Trade Policy', 'http://www.nasscom.org/artdisplay.asp?cat_id=849', '', 20,160, 0, 0);
menu[37][8] = new Items('Excise Duty', 'http://www.nasscom.org/artdisplay.asp?cat_id=850', '', 20,160, 0, 0);
menu[37][9] = new Items('Indian Copyright Act', 'http://www.nasscom.org/artdisplay.asp?cat_id=851', '', 20,160, 0, 0);
menu[37][10] = new Items('Cyber Laws', 'http://www.nasscom.org/artdisplay.asp?cat_id=852', '', 20,160, 0, 0);

menu[38] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[38][0] = new Menu(true,'>' , -150, -20, 80, '#F8BB7E', '#FEF5E4', 'itemBorder', 'inneritemTextsm');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[38][1] = new Items('Overview', 'http://www.nasscom.org/artdisplay.asp?cat_id=853', '', 20,150, 0, 0);
menu[38][2] = new Items('VC Scenario', 'http://www.nasscom.org/artdisplay.asp?cat_id=856', '', 20,150, 0, 0);
menu[38][3] = new Items('VC Companies','http://www.nasscom.org/vc_list.asp', '', 20,150, 0, 0);
menu[38][4] = new Items('Critical Success Factors', 'http://www.nasscom.org/artdisplay.asp?cat_id=855', '', 20,150, 0, 0);
//Groups & forum array
menu[39] = new Array();
menu[39][0] = new Menu(true, '>', 3, 22, 80, defOver, defBack, 'itemBorder', 'inneritemTextsm');
menu[39][1] = new Items('BPO Forum', 'http://www.bpo.nasscom.org', '', 20,160, 0, 0);
menu[39][2] = new Items('Emerging Companies Forum', 'http://www.sme.nasscom.org', '', 20,160, 0, 0);
menu[39][3] = new Items('Innovation Forum', 'http://www.nasscom.org/innovation.asp', '', 20,160, 0, 0);
menu[39][4] = new Items('IT Workforce', 'http://www.nasscom.org/itworkforce', '', 20,160, 0, 0);
menu[39][5] = new Items('Product Forum', 'http://www.products.nasscom.org', '', 20,160, 0, 0);
menu[39][6] = new Items('Trusted Sourcing', 'http://www.nasscom.org/trustedsourcing.asp', '', 20,160, 0, 0);



// *** OPTIONAL CODE FROM HERE DOWN ***

// These two lines handle the window resize bug in NS4. See <body onResize="...">.
// I recommend you leave this here as otherwise when you resize NS4's width menus are hidden.

var popOldWidth = window.innerWidth;
nsResizeHandler = new Function('if (popOldWidth != window.innerWidth) location.reload()');


// This is a quick snippet that captures all clicks on the document and hides the menus
// every time you click. Use if you want.

if (isNS4) document.captureEvents(Event.CLICK);
document.onclick = clickHandle;

function clickHandle(evt)
{
 if (isNS4) document.routeEvent(evt);
 hideAllBut(0);
}


// This is just the moving command for the example.

//function moveRoot()
//{
 //with(menu[0][0].ref) left = ((parseInt(left) < 100) ? 100 : 5);
//}
//  End -->







