//################################################################################	
//
//S T A R T   M E N U
//
//This is the code that makes up the Left Menu structure. 
//The entire menu is contaned in one table cell.  This cell
//contains a new table with 2 columns.
//col 1.) An area on the left to place the arrow head that shows the current
//	    possition in the menu.
//col 2.) The actual menu items.
//---------------------------
//The colors, and text properties are defined in the stylesheet "body.css"
//We link to this code at the top of this page, in the line:
//"<link rel="STYLESHEET" type="text/css" href="body.css">"
//--------------------------	
//-	When a menu item is not the current position in the menu the class="menu"
//	defines the look of the text as outlined by the a.menu style within body.css
//	
//-	When a user places the mouse over the menu item the stylesheet has a built-in
//	style called hover, in this case a.menu:hover within body.css.  This is what 
//	cause the change in color, underline, etc when the mouseover takes place.
//	
//-	When a menu item in the active or current position in the menu, the style a.on
//	within body.css defines the look of this text (highlighted color).  we indicate 
//	this with class="on" 
//	
//	The menu ends with the Comment "E N D   M E N U"
//################################################################################		

			
				var strLocation = document.URL ;
				var mypos ;		
				
				//--------------------------------
				//  O P E N   T H E   T A B L E 
				//--------------------------------	
				document.write("<table BORDER='0' CELLPADDING='0' CELLSPACING='0' height='100%'><tr><td WIDTH='10'>");
//------------------------------------------------------------------
//  H O M E
//------------------------------------------------------------------
						
						mypos = document.URL.indexOf("index");		
						//checks for the name index.htm in the URL, or the title of the page, if the URL
						//does not show the index.htm - for example the user types in the url, without the 
						//index.htm, which would still process as the default page for the site.						
						if((mypos>=0) || (document.title=="Home")){ 
							document.write("<IMG SRC='images/menu_arrow.gif' WIDTH='10' HEIGHT='13' ALT=''>");
							document.write("</td><td>");						
							document.write("<a href='index.htm' class='on'>");	
						}else{
						document.write("</td><td>");						
						document.write("<a href='index.htm' class='menu'>");	
						}											
						document.write("Home</a><br><br></td></tr>");	
						
//------------------------------------------------------------------
//   I m p o r t a n c e   o f   E n t r e p r e n e u r s h i p   E d u c a t i o n
//------------------------------------------------------------------
					document.write("<tr><td WIDTH='10'>");
						mypos = document.URL.indexOf("importance");										
						if(mypos>=0){ 
							document.write("<IMG SRC='images/menu_arrow.gif' WIDTH='10' HEIGHT='13' ALT=''>");
							document.write("</td><td>");						
							document.write("<a href='importance.htm' class='on'>");	
						}else{
						document.write("</td><td>");						
						document.write("<a href='importance.htm' class='menu'>");	
						}											
						document.write("Importance of<br>Entrepreneurship Education</a><br><br></td></tr>");
					
//------------------------------------------------------------------
//  B e n e f i t s   o f   E n t r e p r e n e u r s h i p   E d u c a t i o n
//------------------------------------------------------------------
					document.write("<tr><td WIDTH='10'>");
						mypos = document.URL.indexOf("benefits");										
						if(mypos>=0){ 
							document.write("<IMG SRC='images/menu_arrow.gif' WIDTH='10' HEIGHT='13' ALT=''>");
							document.write("</td><td>");						
							document.write("<a href='benefits.htm' class='on'>");	
						}else{
						document.write("</td><td>");						
						document.write("<a href='benefits.htm' class='menu'>");	
						}											
						document.write("Benefits of<br>Entrepreneurship Education</a><br><br></td></tr>");


//------------------------------------------------------------------
//  N u r t u r i n g   t h e   E n t r e p r e n e u r i a l   S p i r i t
//------------------------------------------------------------------
					document.write("<tr><td WIDTH='10'>");
						mypos = document.URL.indexOf("nurturing");										
						if(mypos>=0){ 
							document.write("<IMG SRC='images/menu_arrow.gif' WIDTH='10' HEIGHT='13' ALT=''>");
							document.write("</td><td>");						
							document.write("<a href='nurturing.htm' class='on'>");	
						}else{
						document.write("</td><td>");						
						document.write("<a href='nurturing.htm' class='menu'>");	
						}											
						document.write("Nurturing the Entrepreneurial Spirit</a><br><br></td></tr>");


				
//------------------------------------------------------------------
//  T h e   S t a n d a r d s
//------------------------------------------------------------------			
				document.write("<tr><td WIDTH='10'></td><td class='menu'>The Standards</td></tr>");	
				
				//------------------------------------------------------------------
				//  T h e   S t a n d a r d s  --  O V E R V I E W
				//------------------------------------------------------------------	
				
					document.write("<tr><td WIDTH='10'>");
						mypos = document.URL.indexOf("standards_overview");										
						if(mypos>=0){ 
							document.write("<IMG SRC='images/menu_arrow.gif' WIDTH='10' HEIGHT='13' ALT=''>");
							document.write("</td><td>");						
							document.write("<a href='standards_overview.htm' class='on' style='margin-left:10px;'>");	
						}else{
						document.write("</td><td>");						
						document.write("<a href='standards_overview.htm' class='menu' style='margin-left:10px;'>");	
						}											
						document.write("a. Overview</a></td></tr>");

				//------------------------------------------------------------------
				//  T h e   S t a n d a r d s  --  S U M M A R Y
				//------------------------------------------------------------------	
				
					document.write("<tr><td WIDTH='10'>");
						mypos = document.URL.indexOf("standards_summary");										
						if(mypos>=0){ 
							document.write("<IMG SRC='images/menu_arrow.gif' WIDTH='10' HEIGHT='13' ALT=''>");
							document.write("</td><td>");						
							document.write("<a href='standards_summary.htm' class='on' style='margin-left:10px;'>");	
						}else{
						document.write("</td><td>");						
						document.write("<a href='standards_summary.htm' class='menu' style='margin-left:10px;'>");	
						}											
						document.write("b. Summary</a></td></tr>");

				//------------------------------------------------------------------
				//  T h e   S t a n d a r d s  --  D E T A I L 
				//------------------------------------------------------------------	
				
					document.write("<tr><td WIDTH='10'>");
						mypos = document.URL.indexOf("standards_detail");										
						if(mypos>=0){ 
							document.write("<IMG SRC='images/menu_arrow.gif' WIDTH='10' HEIGHT='13' ALT=''>");
							document.write("</td><td>");						
							document.write("<a href='standards_detail.htm' class='on' style='margin-left:10px;'>");	
						}else{
						document.write("</td><td>");						
						document.write("<a href='standards_detail.htm' class='menu' style='margin-left:10px;'>");	
						}											
						document.write("c. Detail</a><br><br></td></tr>");
						
//------------------------------------------------------------------
//  5   S T A G E S
//------------------------------------------------------------------			
				document.write("<tr><td WIDTH='10'></td><td class='menu'>Choices - 5 Stage Model</td></tr>");	
				
				//------------------------------------------------------------------
				//  O V E R V I E W
				//------------------------------------------------------------------	
				
					document.write("<tr><td WIDTH='10'>");
						mypos = document.URL.indexOf("5stages_overview");										
						if(mypos>=0){ 
							document.write("<IMG SRC='images/menu_arrow.gif' WIDTH='10' HEIGHT='13' ALT=''>");
							document.write("</td><td>");						
							document.write("<a href='5stages_overview.pdf' class='on' style='margin-left:10px;'>");	
						}else{
						document.write("</td><td>");						
						document.write("<a href='5stages_overview.pdf' class='menu' style='margin-left:10px;'>");	
						}											
						document.write("a. Overview</a></td></tr>");

				//------------------------------------------------------------------
				//  L E V E L S   1 & 2
				//------------------------------------------------------------------	
				
					document.write("<tr><td WIDTH='10'>");
						mypos = document.URL.indexOf("5stages_levels12");										
						if(mypos>=0){ 
							document.write("<IMG SRC='images/menu_arrow.gif' WIDTH='10' HEIGHT='13' ALT=''>");
							document.write("</td><td>");						
							document.write("<a href='COMP1.html' class='on' style='margin-left:10px;'>");	
						}else{
						document.write("</td><td>");						
						document.write("<a href='COMP1.html' class='menu' style='margin-left:10px;'>");	
						}											
						document.write("b. Levels 1 & 2</a></td></tr>");

				//------------------------------------------------------------------
				//  L E V E L    3 
				//------------------------------------------------------------------	
				
					document.write("<tr><td WIDTH='10'>");
						mypos = document.URL.indexOf("5stages_level3");										
						if(mypos>=0){ 
							document.write("<IMG SRC='images/menu_arrow.gif' WIDTH='10' HEIGHT='13' ALT=''>");
							document.write("</td><td>");						
							document.write("<a href='COMP2.html' class='on' style='margin-left:10px;'>");	
						}else{
						document.write("</td><td>");						
						document.write("<a href='COMP2.html' class='menu' style='margin-left:10px;'>");	
						}											
						document.write("c. Level 3</a></td></tr>");
						
				//------------------------------------------------------------------
				//  L E V E L S   4 & 5
				//------------------------------------------------------------------	
				
					document.write("<tr><td WIDTH='10'>");
						mypos = document.URL.indexOf("5stages_levels45");										
						if(mypos>=0){ 
							document.write("<IMG SRC='images/menu_arrow.gif' WIDTH='10' HEIGHT='13' ALT=''>");
							document.write("</td><td>");						
							document.write("<a href='COMP3.html' class='on' style='margin-left:10px;'>");	
						}else{
						document.write("</td><td>");						
						document.write("<a href='COMP3.html' class='menu' style='margin-left:10px;'>");	
						}											
						document.write("d. Levels 4 & 5</a></td></tr>");
						
				//------------------------------------------------------------------
				//  TOTAL LIFELONG MODEL
				//------------------------------------------------------------------	
				
					document.write("<tr><td WIDTH='10'>");
						mypos = document.URL.indexOf("5stages_total");										
						if(mypos>=0){ 
							document.write("<IMG SRC='images/menu_arrow.gif' WIDTH='10' HEIGHT='13' ALT=''>");
							document.write("</td><td>");						
							document.write("<a href='totalmodel.xls' class='on' style='margin-left:10px;'>");	
						}else{
						document.write("</td><td>");						
						document.write("<a href='totalmodel.xls' class='menu' style='margin-left:10px;'>");	
						}											
						document.write("e. Total Lifelong Model</a><br><br></td></tr>");

					
//------------------------------------------------------------------
//  C u r r i c u l u m 
//------------------------------------------------------------------			
				document.write("<tr><td WIDTH='10'></td><td class='menu'>Curriculum</td></tr>");	
				
				//------------------------------------------------------------------
				//  C u r r i c u l u m   --  E D U C A T I O N A L   I S S U E S
				//------------------------------------------------------------------	
				
					document.write("<tr><td WIDTH='10'>");
						mypos = document.URL.indexOf("curriculum_edu_issues");										
						if(mypos>=0){ 
							document.write("<IMG SRC='images/menu_arrow.gif' WIDTH='10' HEIGHT='13' ALT=''>");
							document.write("</td><td>");						
							document.write("<a href='curriculum_edu_issues.htm' class='on' style='margin-left:10px;'>");	
						}else{
						document.write("</td><td>");						
						document.write("<a href='curriculum_edu_issues.htm' class='menu' style='margin-left:10px;'>");	
						}											
						document.write("a. Educational Issues</a></td></tr>");

				//------------------------------------------------------------------
				//  C u r r i c u l u m   --  E X A M P L E S
				//------------------------------------------------------------------	
				
					document.write("<tr><td WIDTH='10'>");
						mypos = document.URL.indexOf("curriculum_examples");										
						if(mypos>=0){ 
							document.write("<IMG SRC='images/menu_arrow.gif' WIDTH='10' HEIGHT='13' ALT=''>");
							document.write("</td><td>");						
							document.write("<a href='curriculum_examples.htm' class='on' style='margin-left:10px;'>");	
						}else{
						document.write("</td><td>");						
						document.write("<a href='curriculum_examples.htm' class='menu' style='margin-left:10px;'>");	
						}											
						document.write("b. Examples</a></td></tr>");

				//------------------------------------------------------------------
				//  C u r r i c u l u m   --  S O U R C E S
				//------------------------------------------------------------------	
				
					document.write("<tr><td WIDTH='10'>");
						mypos = document.URL.indexOf("curriculum_sources");										
						if(mypos>=0){ 
							document.write("<IMG SRC='images/menu_arrow.gif' WIDTH='10' HEIGHT='13' ALT=''>");
							document.write("</td><td>");						
							document.write("<a href='curriculum_sources.htm' class='on' style='margin-left:10px;'>");	
						}else{
						document.write("</td><td>");						
						document.write("<a href='curriculum_sources.htm' class='menu' style='margin-left:10px;'>");	
						}											
						document.write("c. Sources</a><br><br></td></tr>");

										
//------------------------------------------------------------------
//  T E S T I M O N I A L S
//------------------------------------------------------------------
					document.write("<tr><td WIDTH='10'>");
						mypos = document.URL.indexOf("testimonials");										
						if(mypos>=0){ 
							document.write("<IMG SRC='images/menu_arrow.gif' WIDTH='10' HEIGHT='13' ALT=''>");
							document.write("</td><td>");						
							document.write("<a href='testimonials.htm' class='on'>");	
						}else{
						document.write("</td><td>");						
						document.write("<a href='testimonials.htm' class='menu'>");	
						}											
						document.write("Testimonials</a><br><br></td></tr>");			
					
					
//------------------------------------------------------------------
//  A b o u t   t h e   C o n s o r t i u m   f o r   E n t r e  p r e n e u r s h i p   E d u c a t i o n
//------------------------------------------------------------------
					document.write("<tr><td WIDTH='10'>");
						mypos = document.URL.indexOf("about_cee");										
						if(mypos>=0){ 
							document.write("<IMG SRC='images/menu_arrow.gif' WIDTH='10' HEIGHT='13' ALT=''>");
							document.write("</td><td>");						
							document.write("<a href='about_cee.htm' class='on'>");	
						}else{
						document.write("</td><td>");						
						document.write("<a href='about_cee.htm' class='menu'>");	
						}											
						document.write("About the Consortium for Entrepreneurship Education</a><br><br></td></tr>");					
					
					
//------------------------------------------------------------------
//  O u r   S p o n s o r s
//------------------------------------------------------------------
					document.write("<tr><td WIDTH='10'>");
						mypos = document.URL.indexOf("sponsors");										
						if(mypos>=0){ 
							document.write("<IMG SRC='images/menu_arrow.gif' WIDTH='10' HEIGHT='13' ALT=''>");
							document.write("</td><td>");						
							document.write("<a href='sponsors.htm' class='on'>");	
						}else{
						document.write("</td><td>");						
						document.write("<a href='sponsors.htm' class='menu'>");	
						}											
						document.write("Our Sponsors</a><br><br></td></tr>");					
					
					
					
					
					
					
//------------------------------------------------------------------
//  R e s e a r c h    P r o c e s s
//------------------------------------------------------------------			
				document.write("<tr><td WIDTH='10'></td><td class='menu'>Research Process</td></tr>");	
				
				//------------------------------------------------------------------
				//  R e s e a r c h    P r o c e s s  --  O V E R V I E W
				//------------------------------------------------------------------	
				
					document.write("<tr><td WIDTH='10'>");
						mypos = document.URL.indexOf("research_overview");										
						if(mypos>=0){ 
							document.write("<IMG SRC='images/menu_arrow.gif' WIDTH='10' HEIGHT='13' ALT=''>");
							document.write("</td><td>");						
							document.write("<a href='research_overview.htm' class='on' style='margin-left:10px;'>");	
						}else{
						document.write("</td><td>");						
						document.write("<a href='research_overview.htm' class='menu' style='margin-left:10px;'>");	
						}											
						document.write("a. Overview</a></td></tr>");

				//------------------------------------------------------------------
				//  R e s e a r c h    P r o c e s s  --   F O C U S   G R O U P S
				//------------------------------------------------------------------	
				
					document.write("<tr><td WIDTH='10'>");
						mypos = document.URL.indexOf("research_focus_groups");										
						if(mypos>=0){ 
							document.write("<IMG SRC='images/menu_arrow.gif' WIDTH='10' HEIGHT='13' ALT=''>");
							document.write("</td><td>");						
							document.write("<a href='research_focus_groups.htm' class='on' style='margin-left:10px;'>");	
						}else{
						document.write("</td><td>");						
						document.write("<a href='research_focus_groups.htm' class='menu' style='margin-left:10px;'>");	
						}											
						document.write("b. Focus Groups</a></td></tr>");

				//------------------------------------------------------------------
				//  R e s e a r c h    P r o c e s s   --  V A L I D A T I O N
				//------------------------------------------------------------------	
				
					document.write("<tr><td WIDTH='10'>");
						mypos = document.URL.indexOf("research_validation");										
						if(mypos>=0){ 
							document.write("<IMG SRC='images/menu_arrow.gif' WIDTH='10' HEIGHT='13' ALT=''>");
							document.write("</td><td>");						
							document.write("<a href='research_validation.htm' class='on' style='margin-left:10px;'>");	
						}else{
						document.write("</td><td>");						
						document.write("<a href='research_validation.htm' class='menu' style='margin-left:10px;'>");	
						}											
						document.write("c. Validation</a></td></tr>");
						
				
				//------------------------------------------------------------------
				//  R e s e a r c h    P r o c e s s   --  S O U R C E S
				//------------------------------------------------------------------	
				
					document.write("<tr><td WIDTH='10'>");
						mypos = document.URL.indexOf("research_bibliography");										
						if(mypos>=0){ 
							document.write("<IMG SRC='images/menu_arrow.gif' WIDTH='10' HEIGHT='13' ALT=''>");
							document.write("</td><td>");						
							document.write("<a href='research_bibliography.htm' class='on' style='margin-left:10px;'>");	
						}else{
						document.write("</td><td>");						
						document.write("<a href='research_bibliography.htm' class='menu' style='margin-left:10px;'>");	
						}											
						document.write("d. Bibliography</a><br><br></td></tr>");
						
						
				
//------------------------------------------------------------------
//  N a t i o n a l   E n  t r e p r e n e u r  A d v i s o r y   C o u n c i l    ( N E A C )
//------------------------------------------------------------------
					document.write("<tr><td WIDTH='10'>");
						mypos = document.URL.indexOf("neac");										
						if(mypos>=0){ 
							document.write("<IMG SRC='images/menu_arrow.gif' WIDTH='10' HEIGHT='13' ALT=''>");
							document.write("</td><td>");						
							document.write("<a href='neac.htm' class='on'>");	
						}else{
						document.write("</td><td>");						
						document.write("<a href='neac.htm' class='menu'>");	
						}											
						document.write("National Entrepreneur<br>Advisory Council (NEAC)</a><br><br></td></tr>");					
					
				
//------------------------------------------------------------------
//  F A Q
//------------------------------------------------------------------
					document.write("<tr><td WIDTH='10'>");
						mypos = document.URL.indexOf("faq");										
						if(mypos>=0){ 
							document.write("<IMG SRC='images/menu_arrow.gif' WIDTH='10' HEIGHT='13' ALT=''>");
							document.write("</td><td>");						
							document.write("<a href='faq.htm' class='on'>");	
						}else{
						document.write("</td><td>");						
						document.write("<a href='faq.htm' class='menu'>");	
						}											
						document.write("FAQ</a><br><br></td></tr>");					
					
					
//------------------------------------------------------------------
//  H e l p f u l   D o w n l o a d s
//------------------------------------------------------------------
					document.write("<tr><td WIDTH='10'>");
						mypos = document.URL.indexOf("helpful_downloads");										
						if(mypos>=0){ 
							document.write("<IMG SRC='images/menu_arrow.gif' WIDTH='10' HEIGHT='13' ALT=''>");
							document.write("</td><td>");						
							document.write("<a href='helpful_downloads.htm' class='on'>");	
						}else{
						document.write("</td><td>");						
						document.write("<a href='helpful_downloads.htm' class='menu'>");	
						}											
						document.write("Helpful Downloads</a><br><br></td></tr>");					
					
				
				
				
				
				//--------------------------------
				//  C L O S E   T H E   T A B L E 
				document.write("</table>");		
				//--------------------------------
				
//<!--- 	
//E N D   M E N U
//--->


