function obj_find(what, where)
{var x,p;
if(!where) where=document;
if(!(x=where[what]) && where.all) x=where.all[what];
for (i=0;!x&&i<where.forms.length;i++) x=where.forms[i][what];
for(i=0;!x&&where.layers&&i<where.layers.length;i++) x=obj_find(what, where.layers[i].document);
if (!x)x=document.all[what];
return x;}

function sub_over(num)
{var x, parent;
if ((x=obj_find("sub"+num)) != null) {v = 'show';
  if (x.style) {x = x.style; v='visible';}
  x.visibility=v;}

  parent = obj_find("top"+num);
  parent.style.color="ffffff";
  //parent.style.background = "url(images/menuon.gif) left no-repeat"
  parent.style.backgroundColor = "cc0000";
}

function sub_out(num)
{var parent;
if ((x=obj_find("sub"+num)) != null) {
  v = 'hide';
  if (x.style) {x = x.style; v='hidden';}
  x.visibility=v;}

  parent = obj_find("top"+num);
  parent.style.color="000000";
  //parent.style.background = "url(images/menuoff.gif) left no-repeat"
  parent.style.backgroundColor = "ffffff";
}
  var plugin = (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]) ? navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : 0;
             if(plugin){
             plugin=(parseInt(plugin.description.substring(plugin.description.indexOf(".")-1))>=4);
             }
             else if((navigator.userAgent && navigator.userAgent.indexOf("MSIE")>=0)&&((navigator.userAgent.indexOf("Windows 95")>=0)||(navigator.userAgent.indexOf("Windows 98")>=0)||(navigator.userAgent.indexOf("Windows NT")>=0))){
                  document.write('<'+'SCRIPT LANGUAGE=VBScript'+'>\n');
                  document.write('on error resume next\n');
                  document.write('plugin=( IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.4")))\n');
                  document.write('</'+'SCRIPT'+'>');
                  }