/*
   menuData.js
   
   
   This file contains javascript arrays with the meniu headers, options and their urls.
   
   
   To add a new menu category just add a new header cell:
   ex:    header[8]="New Main Category";   headerLink[8]="new_category.html";
   
   
   To add new suboptions for a specific category add a new option array having the header index to correspond with the option index:
   
   ex. This example show how to add extra options for the New Main Category header mentioned above.
   
        option[8]=[];optionLink[8]=[];noOfItems[8]=4;   // Initialization line , very important to specify the number of options
		
        option[8][0]="Option1";  optionLink[8][0]="option1.htm";
        option[8][1]="Option2";  optionLink[8][1]="option2.htm";
        option[8][2]="Option3";  optionLink[8][2]="option3.htm";
        option[8][8]="Option4";  optionLink[8][8]="option4htm";
		
      
     		
*/

var header = Array();
var headerLink = Array();
var noOfItems = Array();

var option = Array();
var optionLink = Array();


header[0]="HOME |";headerLink[0]="index.htm";
header[1]="OVERVIEW |";headerLink[1]="overview.htm";
header[2]="SOLUTIONS |";headerLink[2]="solutions.htm";
header[3]="TOOLKIT |";headerLink[3]="toolkit.htm";
header[4]="SECURITY |";headerLink[4]="security.htm";
header[5]="INDUSTRY LEADERSHIP |";headerLink[5]="industry.htm";
header[6]="CAREERS |";headerLink[6]="careers.htm";
header[7]="CONTACT US";headerLink[7]="contact.htm";

//New headers should be added here

option[0]=[];optionLink[0]=[];noOfItems[0]=0; //HOME

option[1]=[];optionLink[1]=[];noOfItems[1]=7; // OVERVIEW
option[1][0]="News";optionLink[1][0]="about_news.htm";
option[1][1]="Why Solution Beacon";optionLink[1][1]="WhySolutionBeacon.pdf";
option[1][2]="Value Proposition";optionLink[1][2]="about_value.htm";
option[1][3]="Who We Are";optionLink[1][3]="about_who.htm";
option[1][4]="What We Do";optionLink[1][4]="about_what.htm";
option[1][5]="Client List";optionLink[1][5]="about_client.htm";
option[1][6]="Oracle on Demand Partners";optionLink[1][6]="about_oracle.htm";
option[1][7]="Partners";optionLink[1][7]="about_partners.htm";

option[2]=[];optionLink[2]=[];noOfItems[2]=7; // SOLUTIONS
option[2][0]="R11<em>i</em>/12 Upgrades";optionLink[2][0]="sol_upgrade.htm";
option[2][1]="R11<em>i</em>/12 Implementations";optionLink[2][1]="sol_imp.htm";
option[2][2]="Oracle Apps DBA";optionLink[2][2]="sol_oracle.htm";
option[2][3]="Oracle Apps Developer";optionLink[2][3]="sol_deve.htm";
option[2][4]="Systems Architecture";optionLink[2][4]="sol_sysarchit.htm";
option[2][5]="Performance Tuning";optionLink[2][5]="sol_tuning.htm";
option[2][6]="Remote Services";optionLink[2][6]="sol_remote.htm";
option[2][7]="System Review";optionLink[2][7]="sol_system.htm";

option[3]=[];optionLink[3]=[];noOfItems[3]=4; // TOOLKIT
option[3][0]="Installation Checklists";optionLink[3][0]="tool_install.htm";
option[3][1]="Pocket Guides";optionLink[3][1]="tool_pocket.htm";
option[3][2]="R11<em>i</em>/12 Safe Harbor Newsletters";optionLink[3][2]="tool_news.htm";
option[3][3]="R11<em>i</em>/12 Vision Instances";optionLink[3][3]="tool_vision.htm";
option[3][4]="Links";optionLink[3][4]="tool_links.htm";

option[4]=[];optionLink[4]=[];noOfItems[4]=3; // SECURITY
option[4][0]="News";optionLink[4][0]="sec_news.htm";
option[4][1]="White Papers";optionLink[4][1]="sec_white.htm";
option[4][2]="Best Practices";optionLink[4][2]="sec_best.htm?pageId=141";
option[4][3]="Links";optionLink[4][3]="sec_links.htm";

option[5]=[];optionLink[5]=[];noOfItems[5]=7; // INDUSTRY LEADERSHIP
option[5][0]="OAUG";optionLink[5][0]="ind_oaug.htm";
option[5][1]="R11<em>i</em>/12 Workshops";optionLink[5][1]="ind_work.htm";
option[5][2]="Publications";optionLink[5][2]="ind_pub.htm";
option[5][3]="Presentations";optionLink[5][3]="ind_pres.htm";
option[5][4]="Blog";optionLink[5][4]="http://solutionbeacon.blogspot.com/";
option[5][5]="Events";optionLink[5][5]="ind_eve.htm";
option[5][6]="Books";optionLink[5][6]="book.htm";
option[5][7]="Recognition";optionLink[5][7]="ind_rec.htm";

option[6]=[];optionLink[6]=[];noOfItems[6]=0; // CAREERS

option[7]=[];optionLink[7]=[];noOfItems[7]=0; // CONTACT US


//New options should be added here

