// *********************************************************************************
// **                          BUILDING main-MENU DATA                            **
// **                                                                             **
// **  Each item contain 2 elements --- ["Element 1" , "Element 2"],              **
// **                                                                             **
// **  Element 1 --- The name of the section. (For calling Submenu.)              **
// **  Element 2 --- The link of the section.                                     **
// **                                                                             **
// **  * Please DON'T add a comma after the last item!                            **
// *********************************************************************************
var thisMainMenu;
thisMainMenu = new Array(
	["home" , "index.html"],
	["aao" , "aao/index.html"],
	["news" , "news/index.html"],
	["privileges" , "privileges/index.html"],
	["associations" , "associations/index.html"],
	["dataform","contact/dataform.html"],
	["publications","publications/index.html"],  
	["convocation" , "convocation/index.html"],
	["giving" , "giving/index.html"],
	["scholarships" , "scholarships/index.html"],
	["photos" , "photos/index.html"],
	["contact" , "contact/index.html"],
	["campus" , "campus/telnfax.html"],	
	["guest" , "guest/guestbook.html"],
	["faq" , "news/faq.html"]
	
);

// *********************************************************************************
// **                          BUILDING sub-MENU DATA                             **
// **                                                                             **
// **  One array for one section only!                                            **
// **  Each array have to be named as <section name>SubMenu.                      **
// **  [ e.g. The array for section aao is aaoSubMenu(); ]                        **
// **                                                                             **
// **  Array contain items that would be shown inside the submenu.                **
// **  Each item contain 2 elements --- ["Element 1" , "Element 2"],              **
// **                                                                             **
// **  Element 1 --- The name of the section. (For calling Submenu.)              **
// **  Element 2 --- The link of the section.                                     **
// **                                                                             **
// **  * Please DON'T add a comma after the last item!                            **
// *********************************************************************************
// Home Menu
homeSubMenu = new Array();


// CUHK AAO Menu
aaoSubMenu = new Array(
    ["Welcome","aao/welcome.html"],
    ["About AAO","aao/aboutaao.html"]
);


// AAO Latest News Menu
newsSubMenu = new Array(
    ["What's new?","news/whatsnew.html"],
    ["Message to Class 2009","news/graduation_class.html"]
);


// Alumni Privileges Menu
privilegesSubMenu = new Array(
	["Alumni Free Email Forwarding Address","./privileges/efs/index.html"],               
	["Campus Facilities and Services","./privileges/campus_facilities/index.html"],
	["CU Alumni Gold / Platinum Credit Card","./privileges/cucard/index.html"],
	["Other Benefits","./privileges/other_benefits/index.html"]
);


// Alumni Association & Alumni Networking Menu
associationsSubMenu = new Array(
    ["General Information","associations/general.html"],
    ["List of CUHK Alumni Associations","associations/alumni_asso.html"],
	["Welcome to Alumni Associations","associations/join.html"],
    ["How to set up an Alumni Association","associations/setup.html"],
    ["What is the support we can give to you?","associations/support.html"],
    ["FAQs","associations/faq.html"]
);


// Dataform Menu
dataformSubMenu = new Array();


// Publications Menu
publicationsSubMenu = new Array(
	["CU Alumni Magazine","./publications/magazine/index.html"],               
	["Alumni Matters","./publications/alumni_matters/index.html"],
	["Other E-news","./publications/otherenews/index.html"],
	["Mail Order of《我們是這樣成長的》","./publications/books/book.html"]
);

// CUHK Convocation Menu
convocationSubMenu = new Array(
    ["About CU Convocation","convocation/about/index.html"],
    ["List of Convocation Activities and Reports","convocation/about/events.html"]
   // ["Convocation Papers","convocation/paper/index.html"],
   // ["Convocation Constitution and Rules","convocation/about/rulesindex.html"]
);


// Giving Back Book Menu
givingSubMenu = new Array(
    ["Ways to Give?","giving/index.html#howtogive"],
    ["Download Donation Form","../form/Donation.pdf"],
    ["Online Donation Form","giving/onlinedonation.html"]

);

//Alumni Scholarships Menu
scholarshipsSubMenu = new Array();


// Photos Archive Menu
photosSubMenu = new Array();

//Massmail Menu
massmailSubMenu = new Array();


// Contact Menu
contactSubMenu = new Array(
    ["Contact us","contact/contactus.html"],
    ["Alumni Data Form","contact/dataform.html"],
    ["Alumni Email Directory","contact/directory.html"],
    ["Alumni Database","contact/database.html"],
    ["Find our missing Alumni","contact/findalumni.html"]
);


// Connect with Campus Menu
campusSubMenu = new Array(
    ["CUHK Web","campus/cupage.html"],
    ["College News","campus/collegenews.html"],
    ["Campus Telephone / Fax / Email Directory","campus/telnfax.html"]
);


// Guest Book
guestSubMenu = new Array();

// FAQ
faqSubMenu = new Array();
