<!--

/*
 Milonic DHTML Website Navigation Menu - Version 3.4
 Written by Andy Woolley - Copyright 2002 (c) Milonic Solutions Limited. All Rights Reserved.
 Please visit http://www.milonic.co.uk/menu or e-mail menu3@milonic.com for more information.
 
 The Free use of this menu is only available to Non-Profit, Educational & Personal web sites.
 Commercial and Corporate licenses  are available for use on all other web sites & Intranets.
 All Copyright notices MUST remain in place at ALL times and, please keep us informed of your 
 intentions to use the menu and send us your URL.
*/


//The following line is critical for menu operation, and MUST APPEAR ONLY ONCE. If you have more than one menu_array.js file rem out this line in subsequent files
menunum=0;menus=new Array();_d=document;function addmenu(menu){menunum++;menus[menunum]=menu;}function dumpmenus(){mt="<script language=javascript>";for(a=1;a<menus.length;a++){mt+=" menu"+a+"=menus["+a+"];"}mt+="<\/script>";_d.write(mt)}
//Please leave the above line intact. The above also needs to be enabled if it not already enabled unless this file is part of a multi pack.



////////////////////////////////////
// Editable properties START here //
////////////////////////////////////

// Special effect string for IE5.5 or above please visit http://www.milonic.co.uk/menu/filters_sample.php for more filters
if(navigator.appVersion.indexOf("MSIE 6.0")>0)
{
    effect = "fade(duration=0.4);Alpha(style=0,opacity=98);Shadow(color='#777799', Direction=135, Strength=2)"
}
else
{
    effect = "Shadow(color='#777799', Direction=135, Strength=2)" // Stop IE5.5 bug when using more than one filter
}


timegap=1500        // The time delay for menus to remain visible
followspeed=5       // Follow Scrolling speed
followrate=40       // Follow Scrolling Rate
suboffset_top=10;   // Sub menu offset Top position 
suboffset_left=10;  // Sub menu offset Left position


var nextUrl = '';
var nextAnchor = '';
for (var m=0; m < siteNavigation.length; m++){
  var thisMenu = siteNavigation[m];
  var thisMenuDescr = thisMenu.desrc;
  var menu=[thisMenu.name,thisMenu.y,thisMenu.x,thisMenu.width,1,,thisMenu.style,0,,effect,0,0,0,,,0,0,,,0,];
  if (thisMenuDescr.length > 0) {
    for (var i=0; i < thisMenuDescr.length; i++){
      nextAnchor = thisMenuDescr[i][0];
      nextUrl = thisMenuDescr[i][1];
      if (nextUrl.substring(0,9) != "show-menu") {
        nextAnchor = '<img border=0 width=12 height=12 src="images/menubullet.gif">' + nextAnchor;
        nextUrl = nextUrl;      
      } else {
         nextAnchor = '<img border=0 width=12 height=12 src="images/menubullet.gif">' + nextAnchor;
      }
      menu[22 + (i*5)] = nextAnchor;
      menu[22 + (i*5 + 1)] = nextUrl;
      menu[22 + (i*5 + 4)] = 1;
    }
  }
 addmenu(menu);
}
for (var m=0; m < subNavigation.length; m++){
  var thisMenu = subNavigation[m];
  var thisMenuDescr = thisMenu.desrc;
  var menu=[thisMenu.name,thisMenu.y,thisMenu.x,thisMenu.width,1,,thisMenu.style,0,,effect,0,0,0,,,0,0,,,0,];
  if (thisMenuDescr.length > 0) {
    for (var i=0; i < thisMenuDescr.length; i++){
      menu[22 + (i*5)] = thisMenuDescr[i][0];
      menu[22 + (i*5 + 1)] = thisMenuDescr[i][1];
      menu[22 + (i*5 + 4)] = 1;
    }
  }
  addmenu(menu);
}
dumpmenus();

attachResizeHandler();

//-->