<!--
	/////////////////////////////////////////////////////////////////////////////////
	//	THE FOLLOWING ARE THE ONLY VARIABLES AND ARRAY THAT WILL NEED TO BE CHANGED
	//
	
	var basepath = "images/";	
	var tableWidth = 770;				// The size of the top navigation table
	var delay = 1000;				// The length of time to hide the previous layer
	var offsetWidth = 2;				// This is the width between the start of the table to the topnav
	var layoutSize = 770;				// This is the width of the entire site
	
	// This is where you change the table cells attributes
	var tdOff = "#D5EDFB";				// The roll off/default color for the table cell
	var tdOn = "#EFEFEF";				// The roll over color for the table cell
	var lineSeperatorColor = "#e3e3e3";	// This is the color of the line that seperated the links in the layer
	var border = true;					// Show border if set to true
	var borderColor = "#FFFFFF";		// This will be the border color around the drop down layers
	var tdClass = "class='dropLinks'";	// Class applied to the links in the table cell
	var tdHeight = "height='20'";		// Height of each table cell
	
	var totalImages = 7	// Total amount of images on top nav
	
	// [ starting left position, [[text link, actual link],[text link, actual link]], layer width ]
	var dropDownArray = new Array( 
										[3,	[["Profile","profile.htm"], 
											["Our Team","ourteam.htm"], 
											["Contact Us","contactus.htm"] 
											 					],	75],

										[78, 	[["Basic infertility workup","facilitytour.htm#basic"], 
											["Sonography","facilitytour.htm#sonography"], 
											["Recurrent pregnancy loss clinic","facilitytour.htm#recurrent"], 
											["Artificial Insemination","facilitytour.htm#artificial"], 
											["Andrology clinic","facilitytour.htm#andrology"], 
											["Endocrine Evaluation","facilitytour.htm#endrocrine"], 
											["IVF – ICSI","facilitytour.htm#ivf"], 
											["Advanced reproductive endoscopic surgery","facilitytour.htm#advanced"], 
											["Semen freezing","facilitytour.htm#semen"]
											],		166],

										[147, 	[["Ask a Doctor","AskaDoctor.htm"]],		130],

										[147, 	[["Ask a Doctor","AskaDoctor.htm"]],		100],

										[240, 	[["Hormonal Testing","advancegynaecological.htm#hormonal"],
											["Diagnostic hysterolaparoscopy","advancegynaecological.htm#diagnostic"],
											["Follicular studies","advancegynaecological.htm#follicular"],
											["Post Coital Test","advancegynaecological.htm#post"],
											["Intrauterine Insemination","advancegynaecological.htm#intrauterine"],
											["Ovulation Induction","advancegynaecological.htm#ovulation"],
											["Endometriosis","advancegynaecological.htm#endometriosis"],
											["IVF And ICSI","advancegynaecological.htm#icsi"]
											],		200]			
										
										/*[300, 	[["Hormonal Testing","advancegynaecological.htm#hormonal"],
											["Diagnostic hysterolaparoscopy","advancegynaecological.htm#diagnostic"],
											["Follicular studies","advancegynaecological.htm#follicular"],
											["Post Coital Test","advancegynaecological.htm#post"],
											["Intrauterine Insemination","advancegynaecological.htm#intrauterine"],
											["Ovulation Induction","advancegynaecological.htm#ovulation"],
											["Endometriosis","advancegynaecological.htm#endometriosis"],
											["IVF And ICSI","advancegynaecological.htm#icsi"]
											],		200] */
										
										);
	// HOW TO CALL AN INDEX OF THE ARRAY:								
	//dropDownArray[0][0] = Left Position;
	//dropDownArray[0][2] = num;
	//dropDownArray[0][1][0][0] = link Text;
	//dropDownArray[0][1][0][1] = actual link;
// -->