/*------------------------------------------------------------------------------|
|<summary>BoxMenu 1.00														|
|	This script can be used freely as long as all								|
|	copyright messages are intact.												|
|</summary>																		|
|<remarks>																		|
|                                   ''~``										|
|                                  ( o o )       "Eyes on you"					|
|======='======='======='=====.oooO==(_)==Oooo.='======='======='======='=======|
| Developer: Jason Sweatt                        |01/01/2005|Initial Creation|	|
|                              .oooO											|
|                              (   )   Oooo.									|
|======='======='======='========\ (====(   )==='======='======='======='=======|
|Copyright (c) 2005               \_)    ) /									|
|                                       (_/										|		
|</remarks>																		|
|<history>																		|
| Developer		Date                VERSION					Change				|
|-------------------------------------------------------------------------------|
| Jason Sweatt  01/20/2005          1.0.0                     Initial Creation	|
|-------------------------------------------------------------------------------|
|</history>																	   */

// Click
function click(a,b,basepath) {
	if (a.style.display =='') {
		a.style.display = 'none';
		b.src= basepath + 'arrow_down.gif';
  	}else {
    		a.style.display='';
		b.src= basepath + 'arrow_up.gif';
  	}
};

