/*This document contains category and link data used in the leftnavigation column of the web site.  Adding and removing categories and links are done here.*/

//English (U.S.) language link categories

var us_link_category = new Array
(
'Scientific Exchange',
/*'Chambersburg Conference',*/
'About the Program',
'Botanical Community'
);


//Russian language link categories

var ru_link_category = new Array
(
'Научный Обмен',
/*'Конференция в Чемберсбурге',*/
'О программе',
'Ботаническое сообщество'
);


/*The following arrays correspond to each category initialized above in the order presented.  A line of data within each array consists of the link url and the name in English and Russian separated by a forward slash.  Each element is separated by a comma and enclosed by double-quotes as shown.  The last element in an array does not end with a comma.  Note: Pasting Russian alphabet content can be accomplished successfully in the UNIX-based vi editing environment.*/

//Array initializations starts here...

//About links
var about = new Array
(
"./about/intro.shtml", "Introduction/Введение",
"./about/area-v-agreement.shtml", "Environmental Agreement/Соглашение по окружающей среде",
/*"./about/conf/objective.shtml", "Chambersburg Conference/Конференция в Чемберсбурге",*/
"./about/history.shtml", "Historical Perspective/Исторические перспективы"
);


//Conference links
/*
var conf = new Array
(
"./about/conf/objective.shtml", "Objective/Цели",
"./about/conf/attendees.shtml", "Attendees/Участники",
"./about/conf/conf_topics.shtml", "Conference Topics/Темы конференции",
"./about/conf/agenda.shtml", "Agenda/Программа",
"./about/conf/declaration.shtml", "Declaration/Декларация",
"./about/conf/recommendations1.shtml", "Recommendations/Рекомендации"
);
*/

//Scientific Exchange links

var sci_exch = new Array
(
"./sci_exch/news.php", "News/Новости",
"./sci_exch/events.php", "Upcoming Events/Грядущие события",
"./sci_exch/travel.php", "Expeditions/Экспедиции",
"./sci_exch/conf.php", "Conferences/Conferences",
"./sci_exch/pubs.php", "Publications/Публикации",
"./sci_exch/specialists.shtml", "Experts & Specializations/Эксперты и специализация"
);


//Botanical Community

var bot_comm = new Array(
"bot_comm/ru_bot_comm.shtml", "Russia/Россия",
"bot_comm/us_bot_comm.shtml", "United States/Соединенные Штаты")
;


//order of presentation in sidebar 

var link_data = new Array
(
sci_exch,
/*conf,*/
about,
bot_comm
);



