var NoOffFirstLineMenus=6;			// Number of main menu  items
						// Colorvariables:
						// Color variables take HTML predefined color names or "#rrggbb" strings
						//For transparency make colors and border color ""
var LowBgColor="#927158";			// Background color when mouse is not over
	var HighBgColor="#C6B3A1";			// Background color when mouse is over
	var FontLowColor="white";			// Font color when mouse is not over
	var FontHighColor="black";			// Font color when mouse is over
	var BorderColor="#333333";			// Border color
	var BorderWidthMain=0;			// Border width main items
	var BorderWidthSub=1;			// Border width sub items
 	var BorderBtwnMain=0;			// Border between elements main items 1 or 0
	var BorderBtwnSub=1;			// Border between elements sub items 1 or 0
	var FontFamily="verdana,arial,helvetica";	// Font family menu items
	var FontSize=8;				// Font size menu items
	var FontBold=0;				// Bold menu items 1 or 0
	var FontItalic=0;				// Italic menu items 1 or 0
	var MenuTextCentered="left";		// Item text position left, center or right
	var MenuCentered="center";			// Menu horizontal position can be: left, center, right, justify,
						//  leftjustify, centerjustify or rightjustify. PartOfWindow determines part of window to use
	var MenuVerticalCentered="top";		// Menu vertical position top, middle,bottom or static
	var ChildOverlap=0;			// horizontal overlap child/ parent
	var ChildVerticalOverlap=0;			// vertical overlap child/ parent
	var StartTop=80;				// Menu offset x coordinate. If StartTop is between 0 and 1 StartTop is calculated as part of windowheight
	var StartLeft=0;				// Menu offset y coordinate. If StartLeft is between 0 and 1 StartLeft is calculated as part of windowheight
	var VerCorrect=0;				// Multiple frames y correction
	var HorCorrect=0;				// Multiple frames x correction
	var LeftPaddng=2;				// Left padding
	var TopPaddng=2;				// Top padding
	var FirstLineHorizontal=1;			// First level items layout horizontal 1 or 0
	var MenuFramesVertical=1;			// Frames in cols or rows 1 or 0
	var DissapearDelay=1000;			// delay before menu folds in
	var UnfoldDelay=100;			// delay before sub unfolds	
	var TakeOverBgColor=1;			// Menu frame takes over background color subitem frame
	var FirstLineFrame="";			// Frame where first level appears
	var SecLineFrame="";			// Frame where sub levels appear
	var DocTargetFrame="";			// Frame where target documents appear
	var TargetLoc="";				// span id for relative positioning
	var MenuWrap=1;				// enables/ disables menu wrap 1 or 0
	var RightToLeft=0;				// enables/ disables right to left unfold 1 or 0
	var BottomUp=0;				// enables/ disables Bottom up unfold 1 or 0
	var UnfoldsOnClick=0;			// Level 1 unfolds onclick/ onmouseover
	var BaseHref=document.location.href.substring(0,document.location.href.lastIndexOf("/") +1);
					//"file:///G|/dw_sites/jiva_new/"				// BaseHref lets you specify the root directory for relative links. 
						// The script precedes your relative links with BaseHref
						// For instance: 
						// when your BaseHref= "http://www.MyDomain/" and a link in the menu is "subdir/MyFile.htm",
						// the script renders to: "http://www.MyDomain/subdir/MyFile.htm"
						// Can also be used when you use images in the textfields of the menu
						// "MenuX=new Array("<img src=\""+BaseHref+"MyImage\">"
						// For testing on your harddisk use syntax like: BaseHref="file:///C|/MyFiles/Homepage/"

	var Arrws=[BaseHref+"m_images/tri.gif",4,8,BaseHref+"m_images/tridown.gif",6,3,BaseHref+"m_images/trileft.gif",4,8,BaseHref+"m_images/triup.gif",8,4];

						// Arrow source, width and height.
						// If arrow images are not needed keep source ""

	var MenuUsesFrames=1;			// MenuUsesFrames is only 0 when Main menu, submenus,
						// document targets and script are in the same frame.
						// In all other cases it must be 1

	var RememberStatus=0;			// RememberStatus: When set to 1, menu unfolds to the presetted menu item. 
						// When set to 2 only the relevant main item stays highligthed
						// The preset is done by setting a variable in the head section of the target document.
						// <head>
						//	<script type="text/javascript">var SetMenu="2_2_1";</script>
						// </head>
						// 2_2_1 represents the menu item Menu2_2_1=new Array(.......

	var PartOfWindow=.8;			// PartOfWindow: When MenuCentered is justify, sets part of window width to stretch to

						// Below some pretty useless effects, since only IE6+ supports them
						// I provided 3 effects: MenuSlide, MenuShadow and MenuOpacity
						// If you don't need MenuSlide just leave in the line var MenuSlide="";
						// delete the other MenuSlide statements
						// In general leave the MenuSlide you need in and delete the others.
						// Above is also valid for MenuShadow and MenuOpacity
						// You can also use other effects by specifying another filter for MenuShadow and MenuOpacity.
						// You can add more filters by concanating the strings
	var BuildOnDemand=1;			// 1/0 When set to 1 the sub menus are build when the parent is moused over
	var MenuSlide="";
	var MenuSlide="progid:DXImageTransform.Microsoft.RevealTrans(duration=.5, transition=19)";
	var MenuSlide="progid:DXImageTransform.Microsoft.GradientWipe(duration=.5, wipeStyle=1)";

	var MenuShadow="";
	var MenuShadow="progid:DXImageTransform.Microsoft.DropShadow(color=#888888, offX=3, offY=3, positive=1)";
	var MenuShadow="progid:DXImageTransform.Microsoft.Shadow(color=#888888, direction=135, strength=3)";

	var MenuOpacity="";
	var MenuOpacity="progid:DXImageTransform.Microsoft.Alpha(opacity=90)";

	function BeforeStart(){return}
	function AfterBuild(){return}
	function BeforeFirstOpen(){return}
	function AfterCloseAll(){return}

// Menu tree:
// MenuX=new Array("ItemText","Link","background image",number of sub elements,height,width,"bgcolor","bghighcolor",
//	"fontcolor","fonthighcolor","bordercolor","fontfamily",fontsize,fontbold,fontitalic,"textalign","statustext");
// Color and font variables defined in the menu tree take precedence over the global variables
// Fontsize, fontbold and fontitalic are ignored when set to -1.
// For rollover images ItemText format is:  "rollover?"+BaseHref+"Image1.jpg?"+BaseHref+"Image2.jpg" 

Menu1=new Array("News & Events","","",10,20,135,"","","","","","",8,1,-1,"center","");
	
	Menu1_1=new Array("News","news.htm","",1,20,160,"","","","","","",-1,-1,-1,"","");
		Menu1_1_1=new Array("News Archives","news_archives.htm","",0,20,160,"","","","","","",-1,-1,-1,"","");
	Menu1_2=new Array("Press Releases and Statements","pressreleases.htm","",0,30,160,"","","","","","",-1,-1,-1,"","");
	Menu1_3=new Array("Papal Messages","papalmessage.htm","",0,20,0,"","","","","","",-1,-1,-1,"","");
	
	Menu1_4=new Array("Archdiocesan Gazette & Circulars","","",19,30,0,"","","","","","",-1,-1,-1,"","");
		Menu1_4_1=new Array("Gazette-September 28","gazette2008Sept28.htm","",0,20,200,"","","","","","",-1,-1,-1,"","");
		Menu1_4_2=new Array("Gazette-August 18","gazette_aug18_2008.htm","",0,20,200,"","","","","","",-1,-1,-1,"","");
		Menu1_4_3=new Array("Gazette-August 10","gazette_aug10_2008.htm","",0,20,200,"","","","","","",-1,-1,-1,"","");
		Menu1_4_4=new Array("Bible Sunday","gazette_june2008.htm","",0,20,200,"","","","","","",-1,-1,-1,"","");
		Menu1_4_5=new Array("Easter Message.","gazette08_march.htm","",0,20,200,"","","","","","",-1,-1,-1,"","");
		Menu1_4_6=new Array("Gazette-April 25, 2007.","gazette_april_07.htm","",0,20,200,"","","","","","",-1,-1,-1,"","");
		Menu1_4_7=new Array("Gazette-October 4, 2006.","gazette_sep_10_1.htm","",0,20,200,"","","","","","",-1,-1,-1,"","");
	
		Menu1_4_8=new Array("Gazette-July 10, 2006.","gazette_july_10_06.htm","",0,20,200,"","","","","","",-1,-1,-1,"","");
	
		Menu1_4_9=new Array("Gazette-June 10, 2006.","gazette_june10_06.htm","",0,20,200,"","","","","","",-1,-1,-1,"","");
	
		Menu1_4_10=new Array("Gazette-May 20, 2006.","gazette_may20_06.htm","",0,20,200,"","","","","","",-1,-1,-1,"","");
		Menu1_4_11=new Array("Gazette-March 29, 2006.","gazette_march29_06.htm","",0,20,200,"","","","","","",-1,-1,-1,"","");
		Menu1_4_12=new Array("Gazette-Feb 20, 2006.","gazette_feb20_06.htm","",0,20,200,"","","","","","",-1,-1,-1,"","");
		Menu1_4_13=new Array("Gazette-Dec 15, 2005.","gazette_dec15_05.htm","",0,20,200,"","","","","","",-1,-1,-1,"","");
		Menu1_4_14=new Array("Gazette-Nov 20, 2005.","gazette_nov20.htm","",0,20,200,"","","","","","",-1,-1,-1,"","");
		Menu1_4_15=new Array("Gazette-Nov 10, 2005.","gazette_nov10.htm","",0,20,200,"","","","","","",-1,-1,-1,"","");
		Menu1_4_16=new Array("Gazette-Nov 5, 2005.","gazette_current.htm","",0,20,200,"","","","","","",-1,-1,-1,"","");
		Menu1_4_17=new Array("Pastoral Letter - Mission Sunday","pl_missionsunday.htm","",0,20,0,"","","","","","",-1,-1,-1,"","");
		Menu1_4_18=new Array("Circular - Anniversary of the Death of Archbishop Joseph Kelanthara","circulars.htm","",0,50,0,"","","","","","",-1,-1,-1,"","");
		Menu1_4_19=new Array("Gazette Archives","gazette_archives.htm","",0,20,0,"","","","","","",-1,-1,-1,"","");
	Menu1_5=new Array("Ecclesiastical Calendar","ecclesiastical_calendar.htm","",0,20,0,"","","","","","",-1,-1,-1,"","");
	Menu1_6=new Array("Calendar of Events","","",6,20,0,"","","","","","",-1,-1,-1,"","");
	Menu1_6_1=new Array("May 2006.","calendarofevents_may_06.htm","",0,20,100,"","","","","","",-1,-1,-1,"","");
	Menu1_6_2=new Array("March 2006.","calendarofevents_march_06.htm","",0,20,100,"","","","","","",-1,-1,-1,"","");
		Menu1_6_3=new Array("February 2006.","calendarofevents_feb_06.htm","",0,20,100,"","","","","","",-1,-1,-1,"","");
		Menu1_6_4=new Array("January 2006.","calendarofevents_jan.htm","",0,20,100,"","","","","","",-1,-1,-1,"","");
		Menu1_6_5=new Array("November 2005.","calendarofevents_nov.htm","",0,20,100,"","","","","","",-1,-1,-1,"","");
		Menu1_6_6=new Array("October 2005.","calendarofevents_oct.htm","",0,20,100,"","","","","","",-1,-1,-1,"","");
	Menu1_7=new Array("Publications","publications.htm","",0,20,0,"","","","","","",-1,-1,-1,"","");
	Menu1_8=new Array("Employment News","emplymentnews.htm","",0,20,0,"","","","","","",-1,-1,-1,"","");
	Menu1_9=new Array("Catholic Links","catholiclinks.htm","",0,20,0,"","","","","","",-1,-1,-1,"","");
	Menu1_10=new Array("Discussion Corner","discussion_corner.htm","",0,20,0,"","","","","","",-1,-1,-1,"","");
	
Menu2=new Array("Archdiocese","","",8,15,120,"","","","","","",8,1,-1,"center","");
	Menu2_1=new Array("Our Patron Saint","patron.htm","",0,20,180,"","","","","","",-1,-1,-1,"","");
	Menu2_2=new Array("Archbishops","","",7,20,150,"","","","","","",-1,-1,-1,"","");
		Menu2_2_1=new Array("The Archbishop","archbishop.htm","",0,20,140,"","","","","","",-1,-1,-1,"","");
		Menu2_2_2=new Array("Auxiliary Bishop","auxiliaryBishop.htm","",0,20,140,"","","","","","",-1,-1,-1,"","");
		Menu2_2_3=new Array("Archbishop Emeritus","archbishop_emeritus.htm","",0,20,140,"","","","","","",-1,-1,-1,"","");
		Menu2_2_4=new Array("Former Metropolitans","former_metropolitans.htm","",0,20,118,"","","","","","",-1,-1,-1,"","");
		Menu2_2_5=new Array("Former Vicars Apostolic","former_vicars_apostolic.htm","",0,20,118,"","","","","","",-1,-1,-1,"","");
		Menu2_2_6=new Array("Archbishp's Message","archbishops_message.htm","",0,20,118,"","","","","","",-1,-1,-1,"","");
		Menu2_2_7=new Array("Our Mission","mission_statement.htm","",0,20,118,"","","","","","",-1,-1,-1,"","");
	Menu2_3=new Array("Archdiocese at a Glance","arch_a_glance.htm","",0,20,150,"","","","","","",-1,-1,-1,"","");
	Menu2_4=new Array("Priests, the relegious & Seminarians","","",7,30,110,"","","","","","",-1,-1,-1,"","");
		Menu2_4_1=new Array("Archdiocesan Priests","arch_priests1.htm","",0,20,200,"","","","","","",-1,-1,-1,"","");
		Menu2_4_2=new Array("Papal Dignitaries","papal_dignitaries.htm","",0,20,200,"","","","","","",-1,-1,-1,"","");
		Menu2_4_3=new Array("Religious Priests Working in the Archdiocese","relegiouspriests.htm","",0,30,110,"","","","","","",-1,-1,-1,"","");
		Menu2_4_4=new Array("Diocesan/Religious Priests working in other Dioceses","relegiouspriests_other_diocese.htm","",0,30,110,"","","","","","",-1,-1,-1,"","");
		Menu2_4_5=new Array("Religious Brothers working in the Archdioceses","relegious_brothers.htm","",0,30,110,"","","","","","",-1,-1,-1,"","");
		Menu2_4_6=new Array("Religious Brothers working in other Dioceses","relegious_brothers_other_diocese.htm","",0,30,110,"","","","","","",-1,-1,-1,"","");
		Menu2_4_7=new Array("Major Seminarians of the Archdiocese","major_seminarians.htm","",0,30,110,"","","","","","",-1,-1,-1,"","");
	Menu2_5=new Array("Administration","","",5,20,110,"","","","","","",-1,-1,-1,"","");
		Menu2_5_1=new Array("Pastoral Organization","pastoralorganisation.htm","",0,20,160,"","","","","","",-1,-1,-1,"","");
		Menu2_5_2=new Array("Organisational Chart","organisationalchart.htm","",0,20,110,"","","","","","",-1,-1,-1,"","");
		Menu2_5_3=new Array("Archdiocesan Bodies","archdiocesanbodies.htm","",0,20,110,"","","","","","",-1,-1,-1,"","");
		Menu2_5_4=new Array("Archdiocesan Departments","arch_departments.htm","",0,20,110,"","","","","","",-1,-1,-1,"","");
		Menu2_5_5=new Array("Other Catholic Organisations & Offices","other_catholic_organisations.htm","",0,30,118,"","","","","","",-1,-1,-1,"","");
	Menu2_6=new Array("Ecclesiastical Institutions","","",2,20,110,"","","","","","",-1,-1,-1,"","");
			Menu2_6_1=new Array("Formation Houses","formation_houses.htm","",0,20,140,"","","","","","",-1,-1,-1,"","");
			Menu2_6_2=new Array("Pastoral Centre - Ashirbhavan","pastoral_ashirbhavan.htm","",0,30,110,"","","","","","",-1,-1,-1,"","");
	Menu2_7=new Array("Relegious Congregations and Houses","","",2,30,110,"","","","","","",-1,-1,-1,"","");
		Menu2_7_1=new Array("Religious Houses for Women","rel_houses_women1.htm","",0,20,200,"","","","","","",-1,-1,-1,"","");
		Menu2_7_2=new Array("Religious Houses for Men","rel_houses_men1.htm","",0,20,110,"","","","","","",-1,-1,-1,"","");
	Menu2_8=new Array("History","","",3,0,100,"","","","","","",-1,-1,-1,"","");
		Menu2_8_1=new Array("Brief History of Archdiocese","history.htm","",0,30,118,"","","","","","",-1,-1,-1,"","");
		Menu2_8_2=new Array("Chronology of Events","chronology_of_events.htm","",0,30,118,"","","","","","",-1,-1,-1,"","");
		Menu2_8_3=new Array("Online Museum","online_museum.htm","",0,20,118,"","","","","","",-1,-1,-1,"","");
	
Menu3=new Array("Parishes","","",4,15,120,"","","","","","",8,1,-1,"center","")
	Menu3_1=new Array("By name","parishes_by_name.htm","",0,20,118,"","","","","","",-1,-1,-1,"","");
	Menu3_2=new Array("By the year of foundation","parishes_by_year.htm","",0,30,110,"","","","","","",-1,-1,-1,"","");
	Menu3_3=new Array("By Deaneries / Forane Districts","parishes_by_forane_district.htm","",0,30,110,"","","","","","",-1,-1,-1,"","");
	Menu3_4=new Array("Important Shrines & Parishes","important_shrines.htm","",0,30,110,"","","","","","",-1,-1,-1,"","");
	
Menu4=new Array("Institutions & Organisations","","",4,15,205,"","","","","","",8,1,-1,"center","");	
	Menu4_1=new Array("Education","","",10,20,208,"","","","","","",-1,-1,-1,"","");
		Menu4_1_1=new Array("Schools","","",5,20,170,"","","","","","",-1,-1,-1,"","");
			Menu4_1_1_1=new Array("Nursery Schools","nursery_schools.htm","",0,20,170,"","","","","","",-1,-1,-1,"","");
			Menu4_1_1_2=new Array("Lower Primary Schools","lp_schools.htm","",0,20,170,"","","","","","",-1,-1,-1,"","");
			Menu4_1_1_3=new Array("Upper Primary Schools","up_schools.htm","",0,20,170,"","","","","","",-1,-1,-1,"","");
			Menu4_1_1_4=new Array("Secondary Schools","secondary_schools.htm","",0,20,170,"","","","","","",-1,-1,-1,"","");
			Menu4_1_1_5=new Array("Higher Secondary Schools","hs_schools.htm","",0,20,170,"","","","","","",-1,-1,-1,"","");
		Menu4_1_2=new Array("Colleges","colleges.htm","",0,20,208,"","","","","","",-1,-1,-1,"","");
		Menu4_1_3=new Array("Specialized Schools","specializedschools.htm","",0,20,208,"","","","","","",-1,-1,-1,"","");
		Menu4_1_4=new Array("Industrial Training Centres","industrialtrainingcentres.htm","",0,20,208,"","","","","","",-1,-1,-1,"","");
		Menu4_1_5=new Array("Training Institutes","traininginstitutes.htm","",0,20,208,"","","","","","",-1,-1,-1,"","");
		Menu4_1_6=new Array("Technical Training Institutes","technicaltraininginstitute.htm","",0,20,208,"","","","","","",-1,-1,-1,"","");
		Menu4_1_7=new Array("Music & Finearts","music_finearts.htm","",0,20,208,"","","","","","",-1,-1,-1,"","");
		Menu4_1_8=new Array("Hostels","hostels.htm","",0,20,208,"","","","","","",-1,-1,-1,"","");
		Menu4_1_9=new Array("Boarding Houses","boardinghouses.htm","",0,20,208,"","","","","","",-1,-1,-1,"","");
		Menu4_1_10=new Array("Navadarshan Educational Council","navadarshan.html","",0,30,208,"","","","","","",-1,-1,-1,"","");
		
	Menu4_2=new Array("Health","","",3,20,118,"","","","","","",-1,-1,-1,"","");
		Menu4_2_1=new Array("Hospitals","hospitals.htm","",0,20,150,"","","","","","",-1,-1,-1,"","");
		Menu4_2_2=new Array("Dispensaries and Clinics","dispansaries.htm","",0,20,118,"","","","","","",-1,-1,-1,"","");
		Menu4_2_3=new Array("Asylum for the Aged","asylumfor_aged.htm","",0,20,118,"","","","","","",-1,-1,-1,"","");
	
	Menu4_3=new Array("Social Welfare","","",7,20,118,"","","","","","",-1,-1,-1,"","");
		Menu4_3_1=new Array("Ernakulam Social Service Society","ekm_social_service.htm","",0,30,130,"","","","","","",-1,-1,-1,"","");
		Menu4_3_2=new Array("Aswas Counseling Centre","AswasCounselingcentre.htm","",0,20,118,"","","","","","",-1,-1,-1,"","");
		Menu4_3_3=new Array("Orphanages","orphanages.htm","",0,20,118,"","","","","","",-1,-1,-1,"","");
		Menu4_3_4=new Array("Marriage Bureaus","marriage_bureaus.htm","",0,20,118,"","","","","","",-1,-1,-1,"","");
		Menu4_3_5=new Array("Homes for the Aged","asylumfor_aged.htm","",0,20,118,"","","","","","",-1,-1,-1,"","");
		Menu4_3_6=new Array("Crèches","creches.htm","",0,20,118,"","","","","","",-1,-1,-1,"","");
		Menu4_3_7=new Array("H R Development & Management","hr_development.htm","",0,30,118,"","","","","","",-1,-1,-1,"","");
	Menu4_4=new Array("Other Institutions","","",2,20,118,"","","","","","",-1,-1,-1,"","");
		Menu4_4_1=new Array("Publishing Houses & Presses","publishing_houses.htm","",0,30,130,"","","","","","",-1,-1,-1,"","");
		Menu4_4_2=new Array("Prayer, Retreats & Seminars","prayer_retreats_seminars.htm","",0,30,118,"","","","","","",-1,-1,-1,"","");		
	
Menu5=new Array("Hierarchy","","",11,20,110,"","","","","","",8,1,-1,"center","");
		Menu5_1=new Array("The Roman Pontiff & the Secretariat","romanpontiff.htm","",0,20,230,"","","","","","",-1,-1,-1,"","");
		Menu5_2=new Array("Church in India","church_in_india.htm","",0,20,118,"","","","","","",-1,-1,-1,"","");
		Menu5_3=new Array("The Apostolic Nunciature","apostolicnunciature.htm","",0,20,110,"","","","","","",-1,-1,-1,"","");
		Menu5_4=new Array("Catholic Bishop's Conference of India (CBCI)","cbci.htm","",0,30,110,"","","","","","",-1,-1,-1,"","");
		Menu5_5=new Array("Church in Kerala","church_in_kerala.htm","",0,20,118,"","","","","","",-1,-1,-1,"","");
		Menu5_6=new Array("Kerala Catholic Bishop's Conference","keralacatholibishops.htm","",0,20,110,"","","","","","",-1,-1,-1,"","");
		Menu5_7=new Array("Catholic Dioceses of Kerala","catholicdioceses_kerala.htm","",0,20,110,"","","","","","",-1,-1,-1,"","");
		Menu5_8=new Array("Kerala Regional Latin Catholic Council","keralaregionallatincatholiccouncil.htm","",0,20,110,"","","","","","",-1,-1,-1,"","");
		Menu5_9=new Array("Latin Catholic Dioceses","latincatholic_Dioceses.htm","",0,20,118,"","","","","","",-1,-1,-1,"","");
		Menu5_10=new Array("Commissions and Associations","commisions_associations.htm","",0,20,110,"","","","","","",-1,-1,-1,"","");
		Menu5_11=new Array("Family Units & Leaders","familyunits.htm","",0,20,110,"","","","","","",-1,-1,-1,"","");
		
Menu6=new Array("Contact","contact.htm","",0,0,88,"","","","","","",8,1,-1,"center","");

