 /***********************************************
*	(c) Ger Versluis 2000 version 9.10 14 October 2002        *
*	You may use this script on non commercial sites.	          *
*	For info write to menus@burmees.nl		          *
*	You may remove all comments for faster loading	          *		
************************************************/
	
// Browserdetectionscript made by Henrik Petersen / NetKontoret
				// Script explained at www.echoecho.com/javascript.htm
				// Please do not remove this and the two lines above.
				// Detect the browsername
				browsername=navigator.appName;
				if (browsername.indexOf("Netscape")!=-1) {browsername="NS"}
				else
				{if (browsername.indexOf("Microsoft")!=-1) {browsername="MSIE"}
				else {browsername="N/A"}};

				//detect the browserversion
				browserversion="0";
				if (navigator.appVersion.indexOf("6.")!=-1) {browserversion="6"};
				if (navigator.appVersion.indexOf("5.")!=-1) {browserversion="5"};
				if (navigator.appVersion.indexOf("4.")!=-1) {browserversion="4"};
				if (navigator.appVersion.indexOf("3.")!=-1) {browserversion="3"};
				if (navigator.appVersion.indexOf("2.")!=-1) {browserversion="2"};


				if (browsername=="NS") 	{
			   	if (browserversion<5)	{var TargetLoc=""; var StartTop=70;	var StartLeft=79; var MenuCentered="center"}
 				else 					{var TargetLoc="MenuPos"; var StartTop=0; var StartLeft=0; var MenuCentered="left"}
										};			  
			  
				if (browsername=="MSIE"){var TargetLoc="MenuPos"; var StartTop=0; var StartLeft=0; var MenuCentered="left"};
			  	if (browsername=="N/A") {var TargetLoc="MenuPos"; var StartTop=0; var StartLeft=0; var MenuCentered="left"};

	

	
	
	var NoOffFirstLineMenus=7;			// 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="#cccccc";			// Background color when mouse is not over
	var HighBgColor="#ffffff";			// Background color when mouse is over
	var FontLowColor="#110066";			// Font color when mouse is not over
	var FontHighColor="#110066";			// Font color when mouse is over
	var BorderColor="#000066";			// Border color
	var BorderWidthMain=1;			// Border width main items
	var BorderWidthSub=1;			// Border width sub items
 	var BorderBtwnMain=1;			// Border between elements main items 1 or 0
	var BorderBtwnSub=1;			// Border between elements sub items 1 or 0
	var FontFamily="arial";	// 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="left";			// 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=.2;			// horizontal overlap child/ parent
	var ChildVerticalOverlap=.2;			// vertical overlap child/ parent
	// var StartTop=0;				// 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=3;				// Left padding
	var TopPaddng=1;				// 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=300;			// delay before menu folds in
	var UnfoldDelay=0;			// 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 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="http://www.law.georgetown.edu/iiel/";				// 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+"images/arrowblue.gif",10,10,BaseHref+"images/spacer.gif",10,5,BaseHref+"images/spacer.gif",5,10,BaseHref+"images/spacer.gif",10,5];

						// Arrow source, width and height.
						// If arrow images are not needed keep source ""

	var MenuUsesFrames=0;			// 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=.7;			// 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=.2, transition=19)";
	var MenuSlide="progid:DXImageTransform.Microsoft.GradientWipe(duration=.2, wipeStyle=1)";

	var MenuShadow="";
	
	var MenuOpacity="";
	var MenuOpacity="progid:DXImageTransform.Microsoft.Alpha(opacity=100)";

	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("rollover?"+BaseHref+"images/tab-intro-up.gif?"+BaseHref+"images/tab-intro-over.gif","about/index.html","",3,16,100,"","","","","","",-1,-1,-1,"","Own text entered");
	Menu1_1=new Array("MISSION & DESCRIPTION","about/index.html","",0,16,167,"","","","","","",-1,-1,-1,"","");
	Menu1_2=new Array("HISTORY & SETTING","about/history.html","",0,16,167,"","","","","","",-1,-1,-1,"","");
	Menu1_3=new Array("IIEL MAILING LIST","about/emaillist.html","",0,16,167,"","","","","","",-1,-1,-1,"","");
Menu2=new Array("rollover?"+BaseHref+"images/tab-people-up.gif?"+BaseHref+"images/tab-people-over.gif","people/index.html","",6,16,53,"","","","","","",-1,-1,-1,"","");
	Menu2_1=new Array("DIRECTION","people/direction.html","",0,16,167,"","","","","","",-1,-1,-1,"","");
	Menu2_2=new Array("FACULTY STEERING COMMITTEE","people/steeringcom.html","",0,16,167,"","","","","","",-1,-1,-1,"","");
	Menu2_3=new Array("STAFF","people/staff.html","",0,16,167,"","","","","","",-1,-1,-1,"","");
	Menu2_4=new Array("FACULTY ASSOCIATES","people/facultyassociates.html","",0,16,167,"","","","","","",-1,-1,-1,"","");
	Menu2_5=new Array("COMMITTEE OF DISTINGUISHED ADVISORS","people/advisors.html","",0,29,167,"","","","","","",-1,-1,-1,"","");
	Menu2_6=new Array("FELLOWS","fellows/currentfellows.html","",0,16,125,"","","","","","",-1,-1,-1,"","");
Menu3=new Array("rollover?"+BaseHref+"images/tab-activities-up.gif?"+BaseHref+"images/tab-activities-over.gif","activities/index.html","",5,16,75,"","","","","","",-1,-1,-1,"","");
	Menu3_1=new Array("RESEARCH PROJECTS","research/projects/index.html","",6,16,167,"","","","","","",-1,-1,-1,"","");
		Menu3_1_1=new Array("ORAL HISTORY OF THE WORLD TRADING SYSTEM","research/projects/index.html#OralHistory","",0,29,167,"","","","","","",-1,-1,-1,"","");
		Menu3_1_2=new Array("REVIEW OF THE DISPUTE SETTLEMENT UNDERSTANDING","research/projects/index.html#DSU","",0,29,167,"","","","","","",-1,-1,-1,"","");
		Menu3_1_3=new Array("HUMAN RIGHTS AND TRADE","research/projects/index.html#HumanRights","",0,16,167,"","","","","","",-1,-1,-1,"","");
		Menu3_1_4=new Array("HEALTH AND HUMAN RIGHTS","research/projects/index.html#health","",0,16,167,"","","","","","",-1,-1,-1,"","");
		Menu3_1_5=new Array("TRADE & THE ENVIRONMENT","research/projects/index.html#environment","",0,16,167,"","","","","","",-1,-1,-1,"","");
		Menu3_1_6=new Array("EFFECTS OF CHINA'S ACCESSION TO THE WTO","research/projects/index.html#china","",0,29,167,"","","","","","",-1,-1,-1,"","");
	Menu3_2=new Array("PUBLICATIONS","research/associates/index.html","",0,16,167,"","","","","","",-1,-1,-1,"","");
	Menu3_3=new Array("EVENTS","activities/index.html","",0,16,167,"","","","","","",-1,-1,-1,"","");
	Menu3_4=new Array("AFFILIATIONS & FRIENDS","research/affiliations.html","",0,16,167,"","","","","","",-1,-1,-1,"","");
	Menu3_5=new Array("WASHINGTON DC EVENTS & ACTIVITIES","activities/dcevents.html","",3,29,167,"","","","","","",-1,-1,-1,"","");
		Menu3_5_1=new Array("OVERVIEW","activities/dcevents.html","",0,16,167,"","","","","","",-1,-1,-1,"","");
		Menu3_5_2=new Array("ASSOCIATIONS AND INSTITUTIONS","activities/dcevents.html#associations","",0,29,167,"","","","","","",-1,-1,-1,"","");
		Menu3_5_3=new Array("CONGRESSIONAL HEARINGS","activities/dcevents.html#Congress","",0,16,167,"","","","","","",-1,-1,-1,"","");
Menu4=new Array("rollover?"+BaseHref+"images/tab-iiel-fellows-up.gif?"+BaseHref+"images/tab-iiel-fellows-over.gif","fellows/index.html","",4,16,93,"","","","","","",-1,1,-1,"","");
	Menu4_1=new Array("INTRODUCTION","fellows/index.html","",0,16,167,"","","","","","",-1,-1,-1,"","");
	Menu4_2=new Array("APPLICATION INFORMATION","fellows/application.html","",0,16,167,"","","","","","",-1,-1,-1,"","");
	Menu4_3=new Array("CURRENT FELLOWS","fellows/currentfellows.html","",0,16,167,"","","","","","",-1,-1,-1,"","");
	Menu4_4=new Array("IIEL FELLOWS ALUMNI","fellows/fellowsalumni.html","",0,16,167,"","","","","","",-1,-1,-1,"","");
Menu5=new Array("rollover?"+BaseHref+"images/tab-research-up.gif?"+BaseHref+"images/tab-research-over.gif","research/index.html","",5,16,74,"","","","","","",-1,-1,-1,"","");
	Menu5_1=new Array("RESEARCH PROJECTS","research/projects/index.html","",6,16,167,"","","","","","",-1,-1,-1,"","");
		Menu5_1_1=new Array("ORAL HISTORY OF THE WORLD TRADING SYSTEM","research/projects/index.html#OralHistory","",0,29,167,"","","","","","",-1,-1,-1,"","");
		Menu5_1_2=new Array("REVIEW OF THE DISPUTE SETTLEMENT UNDERSTANDING","research/projects/index.html#DSU","",0,29,167,"","","","","","",-1,-1,-1,"","");
		Menu5_1_3=new Array("HUMAN RIGHTS AND TRADE","research/projects/index.html#HumanRights","",0,16,167,"","","","","","",-1,-1,-1,"","");
		Menu5_1_4=new Array("HEALTH AND HUMAN RIGHTS","research/projects/index.html#health","",0,16,167,"","","","","","",-1,-1,-1,"","");
		Menu5_1_5=new Array("TRADE & THE ENVIRONMENT","research/projects/index.html#environment","",0,16,167,"","","","","","",-1,-1,-1,"","");
		Menu5_1_6=new Array("EFFECTS OF CHINA'S ACCESSION TO THE WTO","research/projects/index.html#china","",0,29,167,"","","","","","",-1,-1,-1,"","");
	Menu5_2=new Array("JOURNAL OF INTERNATIONAL ECONOMIC LAW (JIEL)","research/jiel/index.html","",0,29,167,"","","","","","",-1,-1,-1,"","");
	Menu5_3=new Array("RESEARCH TOOLS","research/researchtools.html","",0,16,167,"","","","","","",-1,-1,-1,"","");
	Menu5_4=new Array("BIBLIOGRAPHIES","research/researchtools.html","",0,16,167,"","","","","","",-1,-1,-1,"","");
	Menu5_5=new Array("USEFUL LINKS","research/links/index.html","",0,16,167,"","","","","","",-1,-1,-1,"","");
Menu6=new Array("rollover?"+BaseHref+"images/tab-students-up.gif?"+BaseHref+"images/tab-students-over.gif","students/index.html","",6,16,74,"","","","","","",-1,-1,-1,"","");
	Menu6_1=new Array("INTRODUCTION","students/index.html","",0,16,167,"","","","","","",-1,-1,-1,"","");
	Menu6_2=new Array("INT. ECONOMIC LAW EDUCATION AND RESEARCH AT GULC","students/gulc/index.html","",7,29,167,"","","","","","",-1,-1,-1,"","");
		Menu6_2_1=new Array("OVERVIEW","students/gulc/index.html","",0,16,167,"","","","","","",-1,-1,-1,"","");
		Menu6_2_2=new Array("J.D.","students/gulc/index.html#jd","",0,16,167,"","","","","","",-1,-1,-1,"","");
		Menu6_2_3=new Array("LL.M.","students/gulc/index.html#llm","",0,16,167,"","","","","","",-1,-1,-1,"","");
		Menu6_2_4=new Array("S.J.D.","students/gulc/index.html#sjd","",0,16,167,"","","","","","",-1,-1,-1,"","");
		Menu6_2_5=new Array("VISITING SCHOLARS & RESEARCHERS","students/gulc/index.html#visitors","",0,29,167,"","","","","","",-1,-1,-1,"","");
		Menu6_2_6=new Array("INTERNATIONAL ECONOMIC LAW COURSES AT GULC","students/gulc/ielcourses.html","",0,29,167,"","","","","","",-1,-1,-1,"","");
		Menu6_2_7=new Array("INTERNATIONAL LAW COURSES AT GULC","students/gulc/intlawcourses.html","",0,29,167,"","","","","","",-1,-1,-1,"","");
	Menu6_3=new Array("IIEL WTO CERTIFICATE","students/wtocertificate/index.html","",0,16,167,"","","","","","",-1,-1,-1,"","");
	Menu6_4=new Array("RESEARCH TOOLS","research/researchtools.html","",0,16,167,"","","","","","",-1,-1,-1,"","");
	Menu6_5=new Array("STUDYING INT. ECONOMIC LAW IN THE WORLD","students/studyingworld.html","",0,29,167,"","","","","","",-1,-1,-1,"","");
	Menu6_6=new Array("MATERIALS TO ASSIST LAW INSTRUCTORS","students/materials/materials.html","",0,29,167,"","","","","","",-1,-1,-1,"","");
Menu7=new Array("rollover?"+BaseHref+"images/tab-current-up.gif?"+BaseHref+"images/tab-current-over.gif","current/index.html","",3,16,111,"","","","","","",-1,-1,-1,"","");
	Menu7_1=new Array("AMICUS CURIAE & THE ROLE OF NGOS AT THE WTO","current/amicus/amicuscuriae.html","",0,29,167,"","","","","","",-1,-1,-1,"","");
//	Menu7_2=new Array("GMOS UNDER WTO LAW","current/gmos/index.html","",0,16,167,"","","","","","",-1,-1,-1,"","");
	Menu7_2=new Array("REVIEW OF THE DSU","current/dsureview/index.html","",0,16,167,"","","","","","",-1,-1,-1,"","");
	Menu7_3=new Array("CHINA'S WTO ACCESSION","current/china/index.html","",0,16,167,"","","","","","",-1,-1,-1,"","");
/*	Menu7_5=new Array("TRADE REMEDIES AND THE U.S.","file.htm","",0,16,167,"","","","","","",-1,-1,-1,"","");
*/