/*
   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]="BRIDAL |";headerLink[1]="bridal.htm";
header[2]="BRIDESMAID, FLOWER GIRL & PROM |";headerLink[2]="bridesmaid.htm";
header[3]="BRIDAL ACCESSORIES |";headerLink[3]="accessories.htm";
header[4]="MOTHER OF THE BRIDE |";headerLink[4]="mother.htm";
header[5]="COMMUNION |";headerLink[5]="communion.htm";
header[6]="CHRISTENING |";headerLink[6]="christening.htm";
header[7]="CONTACT US ";headerLink[7]="contactus.htm";

//New headers should be added here



option[0]=[];optionLink[0]=[];noOfItems[0]=3; // HOME
option[0][0]="HOME";optionLink[0][0]="index.htm";
option[0][1]="ABOUT US";optionLink[0][1]="aboutus.htm";
option[0][2]="MEMORIES";optionLink[0][2]="memories.htm";
option[0][3]="GO TO PREVIOUS PAGE";optionLink[0][3]="javascript:history.back()";

option[1]=[];optionLink[1]=[];noOfItems[1]=4; // BRIDAL
option[1][0]="JONATHON JAMES";optionLink[1][0]="JonathonJamesCollections.htm";
option[1][1]="AMANDA WYATT";optionLink[1][1]="AmandaWyattCollections.htm";
option[1][2]="TRUDY LEE";optionLink[1][2]="TrudyLeeCollections.htm";
option[1][3]="FARA SPOSA";optionLink[1][3]="FaraSposaCollections.html";
option[1][4]="OPULENCE";optionLink[1][4]="OpulenceCollections.html";


option[2]=[];optionLink[2]=[];noOfItems[2]=1; // BRIDESMAID
option[2][0]="LINZI JAY";optionLink[2][0]="LinziJayCollections.html";
option[2][1]="HILARY MORGAN";optionLink[2][1]="HilaryMorganCollections.html";
////option[2][2]="TRUDY LEE";optionLink[2][2]="TrudyLeeBridesmaidCollections.html";

option[3]=[];optionLink[3]=[];noOfItems[3]=2; // ACCESSORIES
option[3][0]="SHOES";optionLink[3][0]="BridalShoes.html";
option[3][1]="TIARAS & JEWELLERY";optionLink[3][1]="BridalTiaras.html";
option[3][2]="VEILS";optionLink[3][2]="BridalVeils.html";


option[4]=[];optionLink[4]=[];noOfItems[4]=1; // MOTHER
option[4][0]="FRANK USHER";optionLink[4][0]="FrankUsher.htm";
option[4][1]="NIGEL RAYMENT";optionLink[4][1]="NigelRayment.htm";


option[5]=[];optionLink[5]=[];noOfItems[5]=5; // COMMUNION
option[5][0]="BAGS";optionLink[5][0]="communion_bags.htm";
option[5][1]="DRESSES";optionLink[5][1]="communion_dresses.htm";
option[5][2]="GLOVES";optionLink[5][2]="communion_gloves.htm";
option[5][3]="TIARAS";optionLink[5][3]="communion_Tiaras.htm";
option[5][4]="VEILS";optionLink[5][4]="communion_Veils.htm";
option[5][5]="SHOES";optionLink[5][5]="communion_shoes.html";

option[6]=[];optionLink[6]=[];noOfItems[6]=0; // CHRISTENING
option[6][0]="Reeta Link";optionLink[6][0]="Reeta Link.htm";

option[7]=[];optionLink[7]=[];noOfItems[7]=2; // LOCATE US 
option[7][0]="CONTACT US";optionLink[7][0]="contactus.htm";
option[7][1]="LOCATE US";optionLink[7][1]="locateus.htm";
option[7][2]="ONLINE SHOP";optionLink[7][2]="Shop.html";
//New options should be added here

