    if (document.images) {
        
    	botmenu01on = new Image();
    	botmenu01on.src = "./images/botmenu01on.gif"; 
    	botmenu01off = new Image();
    	botmenu01off.src = "./images/botmenu01off.gif";
        
    	botmenu02on = new Image();
    	botmenu02on.src = "./images/botmenu02on.gif"; 
    	botmenu02off = new Image();
    	botmenu02off.src = "./images/botmenu02off.gif";

    	botmenu03on = new Image();
    	botmenu03on.src = "./images/botmenu03on.gif"; 
    	botmenu03off = new Image();
    	botmenu03off.src = "./images/botmenu03off.gif";

    	botmenu04on = new Image();
    	botmenu04on.src = "./images/botmenu04on.gif";
    	botmenu04off = new Image();
    	botmenu04off.src = "./images/botmenu04off.gif";
    	
    	botmenu05on = new Image();
    	botmenu05on.src = "./images/botmenu05on.gif"; 
    	botmenu05off = new Image();
    	botmenu05off.src = "./images/botmenu05off.gif";

    	botmenu06on = new Image();
    	botmenu06on.src = "./images/botmenu06on.gif";
    	botmenu06off = new Image();
    	botmenu06off.src = "./images/botmenu06off.gif";

menu02on = new Image();
menu02off = new Image();
menu02on.src = "./images/menu02on.gif";
menu02off.src = "./images/menu02off.gif";

menu03on = new Image();
menu03off = new Image();
menu03on.src = "./images/menu03on.gif"; 
menu03off.src = "./images/menu03off.gif";

menu04on = new Image(); 
menu04off = new Image();
menu04on.src = "./images/menu04on.gif";
menu04off.src = "./images/menu04off.gif";

menu05on = new Image();
menu05off = new Image();
menu05on.src = "./images/menu05on.gif"; 
menu05off.src = "./images/menu05off.gif";

menu07on = new Image();
menu07off = new Image();
menu07on.src = "./images/menu07on.gif"; 
menu07off.src = "./images/menu07off.gif";

    }

    function changeImages(){
    	if(document.images){
    		for (var i=0; i<changeImages.arguments.length; i+=2) {
    			document[changeImages.arguments[i]].src = eval(changeImages.arguments[i+1] + ".src");
    		}
    	}
    }

//<![CDATA[

var listMenu = new FSMenu('listMenu', true, 'visibility', 'visible', 'hidden');

var listMenu2 = new FSMenu('listMenu2', true, 'visibility', 'visible', 'hidden');

listMenu.showDelay = 0;
listMenu.switchDelay = 125;
listMenu.hideDelay = 500;
listMenu.cssLitClass = 'highlighted';
listMenu.showOnClick = 0;

listMenu2.showDelay = 0;
listMenu2.switchDelay = 125;
listMenu2.hideDelay = 500;
listMenu2.cssLitClass = 'highlighted';
listMenu2.showOnClick = 0;

function animClipDown(ref, counter)
{
 var cP = Math.pow(Math.sin(Math.PI*counter/200),0.75);
 ref.style.clip = (counter==100 ?
  ((window.opera || navigator.userAgent.indexOf('KHTML') > -1) ? '':
   'rect(auto, auto, auto, auto)') :
    'rect(0, ' + ref.offsetWidth + 'px, '+(ref.offsetHeight*cP)+'px, 0)');
};

function animFade(ref, counter)
{
 var f = ref.filters, done = (counter==100);
 if (f)
 {
  if (!done && ref.style.filter.indexOf("alpha") == -1)
   ref.style.filter += ' alpha(opacity=' + counter + ')';
  else if (f.length && f.alpha) with (f.alpha)
  {
   if (done) enabled = false;
   else { opacity = counter; enabled=true }
  }
 }
 else ref.style.opacity = ref.style.MozOpacity = counter/100.1;
};

listMenu.animations[listMenu.animations.length] = animFade;
listMenu.animations[listMenu.animations.length] = animClipDown;
listMenu.animSpeed = 50;

listMenu2.animations[listMenu2.animations.length] = animFade;
listMenu2.animations[listMenu2.animations.length] = animClipDown;
listMenu2.animSpeed = 50;

var arrow = null;
if (document.createElement && document.documentElement)
{
 arrow = document.createElement('span');
 arrow.appendChild(document.createTextNode('>'));
 // Feel free to replace the above two lines with these for a small arrow image...
 //arrow = document.createElement('img');
 //arrow.src = 'arrow.gif';
 //arrow.style.borderWidth = '0';

 arrow.className = 'subind';
}

addEvent(window, 'load', new Function('listMenu.activateMenu("listMenuRoot", arrow)'));
addEvent(window, 'load', new Function('listMenu2.activateMenu("listMenu2Root", arrow)'));


// You may wish to leave your menu as a visible list initially, then apply its style
// dynamically on activation for better accessibility. Screenreaders and older browsers will
// then see all your menu data, but there will be a 'flicker' of the raw list before the
// page has completely loaded. If you want to do this, remove the CLASS="..." attribute from
// the above outermost UL tag, and uncomment this line:
addEvent(window, 'load', new Function('getRef("listMenuRoot").className="menulist"'));
addEvent(window, 'load', new Function('getRef("listMenu2Root").className="menulist"'));



