ÿþ< ! - -   T U R B O   S A V E D   7 / 1 / 2 0 0 7 - - >  
  
  
 	 v a r   x p P a n e l _ s l i d e A c t i v e   =   t r u e ; 	 / /   S l i d e   d o w n / u p   a c t i v e ?  
 	 v a r   x p P a n e l _ s l i d e S p e e d   =   1 5 ; 	 / /   S p e e d   o f   s l i d e  
  
 	 v a r   d h t m l I t e m _ x p P a n e ;  
 	 v a r   d h t m l I t e m _ p a n e I n d e x ;  
  
 	 v a r   s a v e d A c t i v e P a n e   =   f a l s e ;  
 	 v a r   s a v e d A c t i v e S u b   =   f a l s e ;  
  
 	 f u n c t i o n   s h o w H i d e P a n e C o n t e n t ( )  
 	 {  
 	 	 v a r   i m g   =   t h i s . g e t E l e m e n t s B y T a g N a m e ( ' I M G ' ) [ 0 ] ;  
 	 	 v a r   o b j   =   d o c u m e n t . g e t E l e m e n t B y I d ( ' p a n e C o n t e n t '   +   i m g . i d . r e p l a c e ( / [ ^ 0 - 9 ] / g , ' ' ) ) ;  
 	 	 i f ( i m g . s r c . t o L o w e r C a s e ( ) . i n d e x O f ( ' u p ' ) > = 0 ) {  
 	 	 	 i m g . s r c   =   i m g . s r c . r e p l a c e ( ' u p ' , ' d o w n ' ) ;  
 	 	 	 i f ( x p P a n e l _ s l i d e A c t i v e ) {  
 	 	 	 	 o b j . s t y l e . d i s p l a y = ' b l o c k ' ;  
 	 	 	 	 s l i d e P a n e ( ( x p P a n e l _ s l i d e S p e e d * - 1 ) , o b j . i d ) ;  
 	 	 	 } e l s e {  
 	 	 	 	 o b j . s t y l e . d i s p l a y = ' n o n e ' ;  
 	 	 	 }  
 	 	 } e l s e {  
 	 	 	 i m g . s r c   =   i m g . s r c . r e p l a c e ( ' d o w n ' , ' u p ' ) ;  
 	 	 	 i f ( x p P a n e l _ s l i d e A c t i v e ) {  
 	 	 	 	 i f ( d o c u m e n t . a l l ) {  
 	 	 	 	 	 o b j . s t y l e . d i s p l a y = ' b l o c k ' ;  
 	 	 	 	 	 o b j . s t y l e . h e i g h t   =   ' 1 p x ' ;  
 	 	 	 	 }  
 	 	 	 	 s l i d e P a n e ( x p P a n e l _ s l i d e S p e e d , o b j . i d ) ;  
 	 	 	 } e l s e {  
 	 	 	 	 o b j . s t y l e . d i s p l a y = ' b l o c k ' ;  
 	 	 	 	 s u b D i v   =   o b j . g e t E l e m e n t s B y T a g N a m e ( ' D I V ' ) [ 0 ] ;  
 	 	 	 	 o b j . s t y l e . h e i g h t   =   s u b D i v . o f f s e t H e i g h t   +   ' p x ' ;  
 	 	 	 }  
 	 	 }  
 	 }  
  
  
  
 	 f u n c t i o n   s l i d e P a n e ( s l i d e V a l u e , i d )  
 	 {  
  
 	 	 v a r   a c t i v e P a n e   =   d o c u m e n t . g e t E l e m e n t B y I d ( i d ) ;  
 	 	 i f ( a c t i v e P a n e = = s a v e d A c t i v e P a n e ) {  
 	 	 	 v a r   s u b D i v   =   s a v e d A c t i v e S u b ;  
 	 	 } e l s e {  
 	 	 	 v a r   s u b D i v   =   a c t i v e P a n e . g e t E l e m e n t s B y T a g N a m e ( ' D I V ' ) [ 0 ] ;  
 	 	 }  
 	 	 s a v e d A c t i v e P a n e   =   a c t i v e P a n e ;  
 	 	 s a v e d A c t i v e S u b   =   s u b D i v ;  
  
 	 	 v a r   h e i g h t   =   a c t i v e P a n e . o f f s e t H e i g h t ;  
 	 	 v a r   i n n e r H e i g h t   =   s u b D i v . o f f s e t H e i g h t ;  
 	 	 h e i g h t + = s l i d e V a l u e ;  
 	 	 i f ( h e i g h t < 0 ) h e i g h t = 0 ;  
 	 	 i f ( h e i g h t > i n n e r H e i g h t ) h e i g h t   =   i n n e r H e i g h t ;  
  
 	 	 i f ( d o c u m e n t . a l l ) {  
 	 	 	 a c t i v e P a n e . s t y l e . f i l t e r   =   ' a l p h a ( o p a c i t y = '   +   M a t h . r o u n d ( ( h e i g h t   /   s u b D i v . o f f s e t H e i g h t ) * 1 0 0 )   +   ' ) ' ;  
 	 	 } e l s e {  
 	 	 	 v a r   o p a c i t y   =   ( h e i g h t   /   s u b D i v . o f f s e t H e i g h t ) ;  
 	 	 	 i f ( o p a c i t y = = 0 ) o p a c i t y = 0 . 0 1 ;  
 	 	 	 i f ( o p a c i t y = = 1 ) o p a c i t y   =   0 . 9 9 ;  
 	 	 	 a c t i v e P a n e . s t y l e . o p a c i t y   =   o p a c i t y ;  
 	 	 }  
  
  
 	 	 i f ( s l i d e V a l u e < 0 ) {  
 	 	 	 a c t i v e P a n e . s t y l e . h e i g h t   =   h e i g h t   +   ' p x ' ;  
 	 	 	 s u b D i v . s t y l e . t o p   =   h e i g h t   -   s u b D i v . o f f s e t H e i g h t   +   ' p x ' ;  
 	 	 	 i f ( h e i g h t > 0 ) {  
 	 	 	 	 s e t T i m e o u t ( ' s l i d e P a n e ( '   +   s l i d e V a l u e   +   ' , " '   +   i d   +   ' " ) ' , 1 0 ) ;  
 	 	 	 } e l s e {  
 	 	 	 	 i f ( d o c u m e n t . a l l ) a c t i v e P a n e . s t y l e . d i s p l a y = ' n o n e ' ;  
 	 	 	 }  
 	 	 } e l s e {  
 	 	 	 s u b D i v . s t y l e . t o p   =   h e i g h t   -   s u b D i v . o f f s e t H e i g h t   +   ' p x ' ;  
 	 	 	 a c t i v e P a n e . s t y l e . h e i g h t   =   h e i g h t   +   ' p x ' ;  
 	 	 	 i f ( h e i g h t < i n n e r H e i g h t ) {  
 	 	 	 	 s e t T i m e o u t ( ' s l i d e P a n e ( '   +   s l i d e V a l u e   +   ' , " '   +   i d   +   ' " ) ' , 1 0 ) ;  
 	 	 	 }  
 	 	 }  
  
  
 	 }  
  
 	 f u n c t i o n   m o u s e o v e r T o p b a r ( )  
 	 {  
 	 	 v a r   i m g   =   t h i s . g e t E l e m e n t s B y T a g N a m e ( ' I M G ' ) [ 0 ] ;  
 	 	 v a r   s r c   =   i m g . s r c ;  
 	 	 i m g . s r c   =   i m g . s r c . r e p l a c e ( ' . g i f ' , ' _ o v e r . g i f ' ) ;  
  
 	 	 v a r   s p a n   =   t h i s . g e t E l e m e n t s B y T a g N a m e ( ' S P A N ' ) [ 0 ] ;  
 	 	 s p a n . s t y l e . c o l o r = ' # 4 2 8 E F F ' ;  
  
 	 }  
 	 f u n c t i o n   m o u s e o u t T o p b a r ( )  
 	 {  
 	 	 v a r   i m g   =   t h i s . g e t E l e m e n t s B y T a g N a m e ( ' I M G ' ) [ 0 ] ;  
 	 	 v a r   s r c   =   i m g . s r c ;  
 	 	 i m g . s r c   =   i m g . s r c . r e p l a c e ( ' _ o v e r . g i f ' , ' . g i f ' ) ;  
  
 	 	 v a r   s p a n   =   t h i s . g e t E l e m e n t s B y T a g N a m e ( ' S P A N ' ) [ 0 ] ;  
 	 	 s p a n . s t y l e . c o l o r = ' ' ;  
  
  
  
 	 }  
  
  
 	 f u n c t i o n   i n i t d h t m l I t e m _ x p P a n e ( p a n e l T i t l e s , p a n e l D i s p l a y e d )  
 	 {  
 	 	 d h t m l I t e m _ x p P a n e   =   d o c u m e n t . g e t E l e m e n t B y I d ( ' d h t m l I t e m _ x p P a n e ' ) ;  
 	 	 v a r   d i v s   =   d h t m l I t e m _ x p P a n e . g e t E l e m e n t s B y T a g N a m e ( ' D I V ' ) ;  
 	 	 d h t m l I t e m _ p a n e I n d e x = 0 ;  
 	 	 f o r ( v a r   n o = 0 ; n o < d i v s . l e n g t h ; n o + + ) {  
 	 	 	 i f ( d i v s [ n o ] . c l a s s N a m e = = ' d h t m l I t e m _ p a n e l ' ) {  
  
 	 	 	 	 v a r   o u t e r C o n t e n t D i v   =   d o c u m e n t . c r e a t e E l e m e n t ( ' D I V ' ) ;  
 	 	 	 	 v a r   c o n t e n t D i v   =   d i v s [ n o ] . g e t E l e m e n t s B y T a g N a m e ( ' D I V ' ) [ 0 ] ;  
 	 	 	 	 o u t e r C o n t e n t D i v . a p p e n d C h i l d ( c o n t e n t D i v ) ;  
  
 	 	 	 	 o u t e r C o n t e n t D i v . i d   =   ' p a n e C o n t e n t '   +   d h t m l I t e m _ p a n e I n d e x ;  
 	 	 	 	 o u t e r C o n t e n t D i v . c l a s s N a m e   =   ' p a n e l C o n t e n t ' ;  
 	 	 	 	 v a r   t o p B a r   =   d o c u m e n t . c r e a t e E l e m e n t ( ' D I V ' ) ;  
  
 	 	 	 	 v a r   s p a n   =   d o c u m e n t . c r e a t e E l e m e n t ( ' S P A N ' ) ;  
 	 	 	 	 s p a n . i n n e r H T M L   =   p a n e l T i t l e s [ d h t m l I t e m _ p a n e I n d e x ] ;  
 	 	 	 	 t o p B a r . a p p e n d C h i l d ( s p a n ) ;  
 	 	 	 	 t o p B a r . o n c l i c k   =   s h o w H i d e P a n e C o n t e n t ;  
 	 	 	 	 t o p B a r . o n m o u s e o v e r   =   m o u s e o v e r T o p b a r ;  
 	 	 	 	 t o p B a r . o n m o u s e o u t   =   m o u s e o u t T o p b a r ;  
  
 	 	 	 	 v a r   i m g   =   d o c u m e n t . c r e a t e E l e m e n t ( ' I M G ' ) ;  
 	 	 	 	 i m g . i d   =   ' s h o w H i d e B u t t o n '   +   d h t m l I t e m _ p a n e I n d e x ;  
 	 	 	 	 i m g . s r c   =   ' i m a g e s / a r r o w _ u p . g i f ' ;  
 	 	 	 	 t o p B a r . a p p e n d C h i l d ( i m g ) ;  
  
 	 	 	 	 i f ( ! p a n e l D i s p l a y e d [ d h t m l I t e m _ p a n e I n d e x ] ) {  
 	 	 	 	 	 o u t e r C o n t e n t D i v . s t y l e . h e i g h t   =   ' 0 p x ' ;  
 	 	 	 	 	 c o n t e n t D i v . s t y l e . t o p   =   0   -   c o n t e n t D i v . o f f s e t H e i g h t   +   ' p x ' ;  
 	 	 	 	 	 i f ( d o c u m e n t . a l l ) o u t e r C o n t e n t D i v . s t y l e . d i s p l a y = ' n o n e ' ;  
 	 	 	 	 	 i m g . s r c   =   ' i m a g e s / a r r o w _ d o w n . g i f ' ;  
 	 	 	 	 	  
 	 	 	 	 }  
  
 	 	 	 	 t o p B a r . c l a s s N a m e = ' t o p B a r ' ;  
 	 	 	 	 d i v s [ n o ] . a p p e n d C h i l d ( t o p B a r ) ;  
 	 	 	 	 d i v s [ n o ] . a p p e n d C h i l d ( o u t e r C o n t e n t D i v ) ;  
 	 	 	 	 d h t m l I t e m _ p a n e I n d e x + + ;  
 	 	 	 }  
 	 	 }  
 	 }  
  
  
  
  
 	 v a r   t e x t P a d d i n g   =   3 ;   / /   P a d d i n g   a t   t h e   l e f t   o f   t a b   t e x t   -   b i g g e r   v a l u e   g i v e s   y o u   w i d e r   t a b s  
 	 v a r   s t i c t D o c T y p e   =   f a l s e ; 	 / /   S e t   t o   t r u e   i f   y o u ' r e   u s i n g   a   s t r i c t   o r   l o o s e   d o c t y p e ,   f a l s e   o t h e r w i s e  
  
 	 / *   D o n ' t   c h a n g e   a n y t h i n g   b e l o w   h e r e   * /  
 	 v a r   t a b O b j ;  
 	 v a r   a c t i v e T a b I n d e x   =   - 1 ;  
 	 v a r   M S I E   =   n a v i g a t o r . u s e r A g e n t . i n d e x O f ( ' M S I E ' ) > = 0 ? t r u e : f a l s e ;  
 	 v a r   n a v i g a t o r V e r s i o n   =   n a v i g a t o r . a p p V e r s i o n . r e p l a c e ( / . * ? M S I E   ( \ d \ . \ d ) . * / g , ' $ 1 ' ) / 1 ;  
  
 	 f u n c t i o n   s e t P a d d i n g ( o b j , p a d d i n g ) {  
 	 	 v a r   s p a n   =   o b j . g e t E l e m e n t s B y T a g N a m e ( ' S P A N ' ) [ 0 ] ;  
 	 	 s p a n . s t y l e . p a d d i n g L e f t   =   p a d d i n g   +   ' p x ' ;  
 	 	 s p a n . s t y l e . p a d d i n g R i g h t   =   p a d d i n g   +   ' p x ' ;  
 	 }  
 	 f u n c t i o n   s h o w T a b ( t a b I n d e x )  
 	 {  
  
 	 	 i f ( a c t i v e T a b I n d e x > = 0 ) {  
 	 	 	 i f ( a c t i v e T a b I n d e x = = t a b I n d e x ) r e t u r n ;  
 	 	 	 v a r   o b j   =   d o c u m e n t . g e t E l e m e n t B y I d ( ' t a b T a b ' + a c t i v e T a b I n d e x ) ;  
 	 	 	 o b j . c l a s s N a m e = ' t a b I n a c t i v e ' ;  
 	 	 	 v a r   i m g   =   o b j . g e t E l e m e n t s B y T a g N a m e ( ' I M G ' ) [ 0 ] ;  
 	 	 	 i m g . s r c   =   ' i m a g e s / t a b _ r i g h t _ i n a c t i v e . g i f ' ;  
 	 	 	 d o c u m e n t . g e t E l e m e n t B y I d ( ' t a b V i e w '   +   a c t i v e T a b I n d e x ) . s t y l e . d i s p l a y = ' n o n e ' ;  
 	 	 }  
  
 	 	 v a r   t h i s O b j   =   d o c u m e n t . g e t E l e m e n t B y I d ( ' t a b T a b ' + t a b I n d e x ) ;  
 	 	 t h i s O b j . c l a s s N a m e = ' t a b A c t i v e ' ;  
 	 	 v a r   i m g   =   t h i s O b j . g e t E l e m e n t s B y T a g N a m e ( ' I M G ' ) [ 0 ] ;  
 	 	 i m g . s r c   =   ' i m a g e s / t a b _ r i g h t _ a c t i v e . g i f ' ;  
 	 	 d o c u m e n t . g e t E l e m e n t B y I d ( ' t a b V i e w '   +   t a b I n d e x ) . s t y l e . d i s p l a y = ' b l o c k ' ;  
 	 	 a c t i v e T a b I n d e x   =   t a b I n d e x ;  
  
  
 	 	 v a r   p a r e n t O b j   =   t h i s O b j . p a r e n t N o d e ;  
 	 	 v a r   a T a b   =   p a r e n t O b j . g e t E l e m e n t s B y T a g N a m e ( ' D I V ' ) [ 0 ] ;  
 	 	 c o u n t O b j e c t s   =   0 ;  
 	 	 v a r   s t a r t P o s   =   2 ;  
 	 	 v a r   p r e v i o u s O b j e c t A c t i v e   =   f a l s e ;  
 	 	 w h i l e ( a T a b ) {  
 	 	 	 i f ( a T a b . t a g N a m e = = ' D I V ' ) {  
 	 	 	 	 i f ( p r e v i o u s O b j e c t A c t i v e ) {  
 	 	 	 	 	 p r e v i o u s O b j e c t A c t i v e   =   f a l s e ;  
 	 	 	 	 	 s t a r t P o s - = 2 ;  
 	 	 	 	 }  
 	 	 	 	 i f ( a T a b = = t h i s O b j ) {  
 	 	 	 	 	 s t a r t P o s - = 2 ;  
 	 	 	 	 	 p r e v i o u s O b j e c t A c t i v e = t r u e ;  
 	 	 	 	 	 s e t P a d d i n g ( a T a b , t e x t P a d d i n g + 1 ) ;  
 	 	 	 	 } e l s e {  
 	 	 	 	 	 s e t P a d d i n g ( a T a b , t e x t P a d d i n g ) ;  
 	 	 	 	 }  
  
 	 	 	 	 a T a b . s t y l e . l e f t   =   s t a r t P o s   +   ' p x ' ;  
 	 	 	 	 c o u n t O b j e c t s + + ;  
 	 	 	 	 s t a r t P o s + = 2 ;  
 	 	 	 }  
 	 	 	 a T a b   =   a T a b . n e x t S i b l i n g ;  
 	 	 }  
  
 	 	 r e t u r n ;  
 	 }  
  
 	 f u n c t i o n   t a b C l i c k ( )  
 	 {  
 	 	 s h o w T a b ( t h i s . i d . r e p l a c e ( / [ ^ \ d ] / g , ' ' ) ) ;  
  
 	 }  
  
 	 f u n c t i o n   r o l l o v e r T a b ( )  
 	 {  
 	 	 i f ( t h i s . c l a s s N a m e . i n d e x O f ( ' t a b I n a c t i v e ' ) > = 0 ) {  
 	 	 	 t h i s . c l a s s N a m e = ' i n a c t i v e T a b O v e r ' ;  
 	 	 	 v a r   i m g   =   t h i s . g e t E l e m e n t s B y T a g N a m e ( ' I M G ' ) [ 0 ] ;  
 	 	 	 i m g . s r c   =   ' i m a g e s / t a b _ r i g h t _ o v e r . g i f ' ;  
 	 	 }  
  
 	 }  
 	 f u n c t i o n   r o l l o u t T a b ( )  
 	 {  
 	 	 i f ( t h i s . c l a s s N a m e   = =     ' i n a c t i v e T a b O v e r ' ) {  
 	 	 	 t h i s . c l a s s N a m e = ' t a b I n a c t i v e ' ;  
 	 	 	 v a r   i m g   =   t h i s . g e t E l e m e n t s B y T a g N a m e ( ' I M G ' ) [ 0 ] ;  
 	 	 	 i m g . s r c   =   ' i m a g e s / t a b _ r i g h t _ i n a c t i v e . g i f ' ;  
 	 	 }  
  
 	 }  
  
 	 f u n c t i o n   i n i t T a b s ( t a b T i t l e s , a c t i v e T a b , w i d t h , h e i g h t )  
 	 {  
 	 	 t a b O b j   =   d o c u m e n t . g e t E l e m e n t B y I d ( ' d h t m l I t e m _ t a b V i e w ' ) ;  
 	 	 w i d t h   =   w i d t h   +   ' ' ;  
 	 	 i f ( w i d t h . i n d e x O f ( ' % ' ) < 0 ) w i d t h =   w i d t h   +   ' p x ' ;  
 	 	 t a b O b j . s t y l e . w i d t h   =   w i d t h ;  
  
 	 	 h e i g h t   =   h e i g h t   +   ' ' ;  
 	 	 i f ( h e i g h t . l e n g t h > 0 ) {  
 	 	 	 i f ( h e i g h t . i n d e x O f ( ' % ' ) < 0 ) h e i g h t =   h e i g h t   +   ' p x ' ;  
 	 	 	 t a b O b j . s t y l e . h e i g h t   =   h e i g h t ;  
 	 	 }  
  
 	 	 v a r   t a b D i v   =   d o c u m e n t . c r e a t e E l e m e n t ( ' D I V ' ) ;  
  
 	 	 v a r   f i r s t D i v   =   t a b O b j . g e t E l e m e n t s B y T a g N a m e ( ' D I V ' ) [ 0 ] ;  
  
 	 	 t a b O b j . i n s e r t B e f o r e ( t a b D i v , f i r s t D i v ) ;  
 	 	 t a b D i v . c l a s s N a m e   =   ' d h t m l I t e m _ t a b P a n e ' ;  
 	 	 f o r ( v a r   n o = 0 ; n o < t a b T i t l e s . l e n g t h ; n o + + ) {  
 	 	 	 v a r   a T a b   =   d o c u m e n t . c r e a t e E l e m e n t ( ' D I V ' ) ;  
 	 	 	 a T a b . i d   =   ' t a b T a b '   +   n o ;  
 	 	 	 a T a b . o n m o u s e o v e r   =   r o l l o v e r T a b ;  
 	 	 	 a T a b . o n m o u s e o u t   =   r o l l o u t T a b ;  
 	 	 	 a T a b . o n c l i c k   =   t a b C l i c k ;  
 	 	 	 a T a b . c l a s s N a m e = ' t a b I n a c t i v e ' ;  
 	 	 	 t a b D i v . a p p e n d C h i l d ( a T a b ) ;  
 	 	 	 v a r   s p a n   =   d o c u m e n t . c r e a t e E l e m e n t ( ' S P A N ' ) ;  
 	 	 	 s p a n . i n n e r H T M L   =   t a b T i t l e s [ n o ] ;  
 	 	 	 a T a b . a p p e n d C h i l d ( s p a n ) ;  
  
 	 	 	 v a r   i m g   =   d o c u m e n t . c r e a t e E l e m e n t ( ' I M G ' ) ;  
 	 	 	 i m g . v a l i g n   =   ' b o t t o m ' ;  
 	 	 	 i m g . s r c   =   ' i m a g e s / t a b _ r i g h t _ i n a c t i v e . g i f ' ;  
 	 	 	 / /   I E 5 . X   F I X  
 	 	 	 i f ( ( n a v i g a t o r V e r s i o n   & &   n a v i g a t o r V e r s i o n < 6 )   | |   ( M S I E   & &   ! s t i c t D o c T y p e ) ) {  
 	 	 	 	 i m g . s t y l e . s t y l e F l o a t   =   ' n o n e ' ;  
 	 	 	 	 i m g . s t y l e . p o s i t i o n   =   ' r e l a t i v e ' ;  
 	 	 	 	 i m g . s t y l e . t o p   =   ' 4 p x '  
 	 	 	 	 s p a n . s t y l e . p a d d i n g T o p   =   ' 4 p x ' ;  
 	 	 	 	 a T a b . s t y l e . c u r s o r   =   ' h a n d ' ;  
 	 	 	 } 	 / /   E n d   I E 5 . x   F I X  
 	 	 	 a T a b . a p p e n d C h i l d ( i m g ) ;  
 	 	 }  
  
 	 	 v a r   t a b s   =   t a b O b j . g e t E l e m e n t s B y T a g N a m e ( ' D I V ' ) ;  
 	 	 v a r   d i v C o u n t e r   =   0 ;  
 	 	 f o r ( v a r   n o = 0 ; n o < t a b s . l e n g t h ; n o + + ) {  
 	 	 	 i f ( t a b s [ n o ] . c l a s s N a m e = = ' d h t m l I t e m _ a T a b ' ) {  
 	 	 	 	 i f ( h e i g h t . l e n g t h > 0 ) t a b s [ n o ] . s t y l e . h e i g h t   =   h e i g h t ;  
 	 	 	 	 t a b s [ n o ] . s t y l e . d i s p l a y = ' n o n e ' ;  
 	 	 	 	 t a b s [ n o ] . i d   =   ' t a b V i e w '   +   d i v C o u n t e r ;  
 	 	 	 	 d i v C o u n t e r + + ;  
 	 	 	 }  
 	 	 }  
 	 	 s h o w T a b ( a c t i v e T a b ) ;  
 	 }  
  
  
  
  
  
 
