ÿþ 
  
 v a r   m e n u L i n k A r r a y   =   [ ] ;  
 m e n u L i n k A r r a y [ 0 ]   =   ' i n t r o 2 . h t m ' ;  
 m e n u L i n k A r r a y [ 1 ]   =   ' t a . h t m ' ;  
 m e n u L i n k A r r a y [ 2 ]   =   ' d d . h t m ' ;  
 m e n u L i n k A r r a y [ 3 ]   =   ' f i n a l . h t m ' ;  
 m e n u L i n k A r r a y [ 4 ]   =   ' a b o u t . h t m ' ;  
 m e n u L i n k A r r a y [ 5 ]   =   ' c o n t a c t . h t m ' ;  
 m e n u L i n k A r r a y [ 6 ]   =   ' f e e s . h t m ' ;  
  
  
 v a r   m e n u A r r a y   =   [ ] ;  
 m e n u A r r a y [ 0 ]   =   ' H o m e ' ;  
 m e n u A r r a y [ 1 ]   =   ' T r i p s   &   A c t i v i t i e s ' ;  
 m e n u A r r a y [ 2 ]   =   ' D a n c e   &   D r a m a ' ;  
 m e n u A r r a y [ 3 ]   =   ' F i n a l   P e r f o r m a n c e ' ;  
 m e n u A r r a y [ 4 ]   =   ' A b o u t   R a c h e l ' ;  
 m e n u A r r a y [ 5 ]   =   ' C o n t a c t   u s ' ;  
 m e n u A r r a y [ 6 ]   =   ' F e e s ' ;  
  
 f u n c t i o n   w r i t e c o d e ( ) {  
 v a r   h t m l c o d e   =   " "  
 h t m l c o d e   =   h t m l c o d e   +   ' ' ;  
 f o r   ( v a r   i = 1 ;   i < m e n u A r r a y . l e n g t h ;   i + + )   {  
 i f ( i > 1 ) { h t m l c o d e   =   h t m l c o d e   + '   |   ' } ;  
 	 h t m l c o d e   =   h t m l c o d e   +   ' < a   h r e f = ' + m e n u L i n k A r r a y [ i ] + ' > ' + m e n u A r r a y [ i ] + ' < / a > ' ;  
 	  
 }  
 h t m l c o d e   =   h t m l c o d e   +   ' & n b s p ; '  
 d o c u m e n t . w r i t e ( h t m l c o d e )  
 }  
  
  
 f u n c t i o n   w r i t e c o d e I n d e x ( ) {  
 v a r   h t m l c o d e   =   " "  
 h t m l c o d e   =   h t m l c o d e   +   ' ' ;  
 f o r   ( v a r   i = 1 ;   i < m e n u A r r a y . l e n g t h ;   i + + )   {  
 i f ( i > 0 ) { h t m l c o d e   =   h t m l c o d e   + ' < p > ' } ;  
 	 h t m l c o d e   =   h t m l c o d e   +   ' < a   s t y l e = " f o n t - w e i g h t :   n o r m a l ;   c o l o r : # 0 0 0 0 0 0 ; "   h r e f = ' + m e n u L i n k A r r a y [ i ] + ' > ' + m e n u A r r a y [ i ] + ' < / a > ' ;  
 	  
 }  
 d o c u m e n t . w r i t e ( h t m l c o d e )  
 }  
  
  
 v a r   a b o u t l i n k A r r a y   =   [ ] ;  
 a b o u t l i n k A r r a y [ 0 ]   =   ' m u s i c . h t m ' ;  
 a b o u t l i n k A r r a y [ 1 ]   =   ' # ' ;  
 a b o u t l i n k A r r a y [ 2 ]   =   ' p r e s s . h t m ' ;  
  
  
 v a r   a b o u t A r r a y   =   [ ] ;  
 a b o u t A r r a y [ 0 ]   =   ' R a c h e l & # 3 9 ; s   M u s i c ' ;  
 a b o u t A r r a y [ 1 ]   =   ' R a c h e l & # 3 9 ; s   S h o w ' ;  
 a b o u t A r r a y [ 2 ]   =   ' R a c h e l & # 3 9 ; s   P r e s s ' ;  
  
  
  
 f u n c t i o n   w r i t e a b o u t ( ) {  
 v a r   h t m l a b o u t   =   " "  
 h t m l a b o u t   =   h t m l a b o u t   +   ' ' ;  
 f o r   ( v a r   i = 0 ;   i < a b o u t A r r a y . l e n g t h ;   i + + )   {  
 i f ( i > 0 ) { h t m l a b o u t   =   h t m l a b o u t   + '   |   ' } ;  
 	 h t m l a b o u t   =   h t m l a b o u t   +   ' < a   h r e f = ' + a b o u t l i n k A r r a y [ i ] + ' > ' + a b o u t A r r a y [ i ] + ' < / a > ' ;  
 	  
 }  
 d o c u m e n t . w r i t e ( h t m l a b o u t )  
 } 
