function x08226313404()
{
    var browser = "None";
    if (navigator.appName.indexOf("Netscape") >= 0 && parseFloat(navigator.appVersion) >= 4)
    {
        browser = "NS4";
        version = 4;
    }
    if (document.getElementById)
    {
        browser = "NS6";
        if (navigator.userAgent.indexOf("6.01") != -1 || navigator.userAgent.indexOf("6.0") != -1)
        {
            version = 6;
        }
        else
        {
            version = 6.1;
        }
    }
    if (document.all)
    {
        if (document.getElementById)
        {
            version = 5;
        }
        else
        {
            version = 4;
        }
        browser = "IE";
    }
    if (navigator.userAgent.indexOf("Opera") != -1)
    {
        browser = "Opera";
    }
    return browser;
};
function x065309()
{
    var os = navigator.userAgent;
    if (os.indexOf("Mac") != -1)
    {
        os = "Mac";
    }
    else
    {
        os = "Win";
    }
    return os;
};
function x0584468753(evt)
{
    if (browser == "NS4")
    {
        return(evt.pageX);
    }
    if (browser == "IE")
    {
        return(event.x + document.body.scrollLeft);
    }
    if (browser == "NS6")
    {
        return(evt.pageX);
    }
    if (browser == "Opera")
    {
        return(event.clientX);
    }
};
function x1324826050(evt)
{
    if (browser == "NS4")
    {
        return(evt.pageY);
    }
    if (browser == "IE")
    {
        return(event.y + document.body.scrollTop);
    }
    if (browser == "NS6")
    {
        return(evt.pageY);
    }
    if (browser == "Opera")
    {
        return(event.clientY);
    }
};
function x1155295267(layerName, parentName)
{
    if (browser == "NS4")
    {
        if (arguments.length == 2)
        {
            return(document.layers[parentName].document.layers[layerName] != undefined);
        }
        else
        {
            return(document.layers[layerName] != undefined);
        }
    }
    if (browser == "IE")
    {
        return(document.all[layerName] != null);
    }
    if (browser == "NS6"||browser == "Opera")
    {
        return(document.getElementById(layerName) != null);
    }
};
function x1096653463(element)
{
    if (browser == "NS4")
    {
        if (document.layers[element] != undefined)
        {
            if (document.layers[element].visibility == "show")
            {
                return true;
            }
            else
            {
                return false;
            }
        }
    }
    if (browser == "IE")
    {
        if (document.all[element] != null)
        {
            if (document.all[element].style.visibility == "visible")
            {
                return true;
            }
            else
            {
                return false;
            }
        }
    }
    if (browser == "NS6"||browser == "Opera")
    {
        if (document.getElementById(element) != null)
        {
            if (document.getElementById(element).style.visibility == "visible")
            {
                return true;
            }
            else
            {
                return false;
            }
        }
    }
};
function x2826022670(element, show)
{
    if (browser == "NS4")
    {
        if (document.layers[element] != undefined)
        {
            if (show)
            {
                document.layers[element].visibility = "show";
            }
            else
            {
                document.layers[element].visibility = "hide";
            }
        }
    }
    if (browser == "IE")
    {
        if (document.all[element] != null)
        {
            if (show)
            {
                document.all[element].style.visibility = "visible";
            }
            else
            {
                document.all[element].style.visibility = "hidden";
            }
        }
    }
    if (browser == "NS6"||browser == "Opera")
    {
        if (document.getElementById(element) != null)
        {
            if (show)
            {
                document.getElementById(element).style.visibility = "visible";
            }
            else
            {
                document.getElementById(element).style.visibility = "hidden";
            }
        }
    }
};
function x2657480876(element, bgColor, parent)
{
    if (browser == "NS4")
    {
        if (arguments.length >= 3)
        {
            if (bgColor == "transparent")
            {
                document.layers[parent].document.layers[element].bgColor = null;
            }
            else
            {
                document.layers[parent].document.layers[element].bgColor = bgColor;
            }
        }
        else
        {
            if (bgColor == "transparent")
            {
                document.layers[element].bgColor = null;
            }
            else
            {
                document.layers[element].bgColor = bgColor;
            }
        }
    }
    if (browser == "IE")
    {
        document.all[element].style.backgroundColor = bgColor;
    }
    if (browser == "NS6")
    {
        document.getElementById(element).style.backgroundColor = bgColor;
    }
    if (browser == "Opera")
    {
        document.getElementById(element).style.background = bgColor;
    }
};
function x2498849083(element, fgColor, parent)
{
    if (x1155295267(element))
    {
        if (browser == "IE")
        {
            document.all[element].style.color = fgColor;
        }
        if (browser == "NS6"||browser == "Opera")
        {
            document.getElementById(element).style.color = fgColor;
        }
    }
};
function x3329217(element, left, parent)
{
    if (browser == "NS4")
    {
        if (arguments.length >= 3)
        {
            document.layers[parent].document.layers[element].left = left;
        }
        else
        {
            document.layers[element].left = left;
        }
    }
    if (browser == "IE")
    {
        document.all[element].style.left = left;
    }
    if (browser == "NS6"||browser == "Opera")
    {
        document.getElementById(element).style.left = left;
    }
};
function x3169675(element, parent)
{
    if (browser == "NS4")
    {
        if (arguments.length >= 2)
        {
            return(document.layers[parent].document.layers[element].left);
        }
        else
        {
            return(document.layers[element].left);
        }
    }
    if (browser == "IE")
    {
        return(document.all[element].offsetLeft);
    }
    if (browser == "NS6")
    {
        var tmp = document.getElementById(element).style.left;
        tmp = parseInt(tmp.substring(0, tmp.length - 2));
        return tmp;
    }
    if (browser == "Opera")
    {
        return(document.getElementById(element).style.pixelLeft);
    }
};
function x3990044603(element, parent)
{
    if (browser == "NS4")
    {
        if (arguments.length >= 2)
        {
            return(document.layers[parent].document.layers[element].pageX);
        }
        else
        {
            return(document.layers[element].pageX);
        }
    }
    if (browser == "IE")
    {
        return(document.all[element].offsetLeft);
    }
    if (browser == "NS6")
    {
        return(document.getElementById(element).offsetLeft);
    }
    if (browser == "Opera")
    {
        return(document.getElementById(element).style.pixelLeft);
    }
};
function x483140(element, top, parent)
{
    if (browser == "NS4")
    {
        if (arguments.length >= 3)
        {
            document.layers[parent].document.layers[element].top = top;
        }
        else
        {
            document.layers[element].top = top;
        }
    }
    if (browser == "IE")
    {
        document.all[element].style.top = top;
    }
    if (browser == "NS6"||browser == "Opera")
    {
        document.getElementById(element).style.top = top;
    }
};
function x466187111(element, parent)
{
    if (browser == "NS4")
    {
        if (arguments.length >= 2)
        {
            return(document.layers[parent].document.layers[element].pageY);
        }
        else
        {
            return(document.layers[element].pageY);
        }
    }
    if (browser == "IE")
    {
        return(document.all[element].offsetTop);
    }
    if (browser == "NS6")
    {
        return(document.getElementById(element).offsetTop);
    }
    if (browser == "Opera")
    {
        return(document.getElementById(element).style.pixelTop);
    }
};
function x449223(element, parent)
{
    if (browser == "NS4")
    {
        if (arguments.length >= 2)
        {
            return(document.layers[parent].document.layers[element].top);
        }
        else
        {
            return(document.layers[element].top);
        }
    }
    if (browser == "IE")
    {
        return(document.all[element].offsetTop);
    }
    if (browser == "NS6")
    {
        var tmp = document.getElementById(element).style.top;
        tmp = parseInt(tmp.substring(0, tmp.length - 2));
        return tmp;
    }
    if (browser == "Opera")
    {
        return(document.getElementById(element).style.pixelTop);
    }
};
function x533360852(element, height, parent)
{
    if (browser == "NS4")
    {
        if (arguments.length >= 3)
        {
            document.layers[parent].document.layers[element].clip.height = height;
        }
        else
        {
            document.layers[element].clip.height = height;
        }
    }
    if (browser == "IE")
    {
        document.all[element].style.height = height;
    }
    if (browser == "NS6"||browser == "Opera")
    {
        document.getElementById(element).style.height = height;
    }
};
function x516306672(element, parent)
{
    if (browser == "NS4")
    {
        if (arguments.length >= 2)
        {
            return(document.layers[parent].document.layers[element].clip.height);
        }
        else
        {
            return(document.layers[element].clip.height);
        }
    }
    if (browser == "IE")
    {
        return(document.all[element].offsetHeight);
    }
    if (browser == "NS6")
    {
        return(document.getElementById(element).offsetHeight);
    }
    if (browser == "Opera")
    {
        return(document.getElementById(element).style.pixelHeight);
    }
};
function x59044349(element, width, parent)
{
    if (browser == "NS4")
    {
        if (arguments.length >= 3)
        {
            document.layers[parent].document.layers[element].clip.width = width;
        }
        else
        {
            document.layers[element].clip.width = width;
        }
    }
    if (browser == "IE")
    {
        document.all[element].style.width = width;
    }
    if (browser == "NS6"||browser == "Opera")
    {
        document.getElementById(element).style.width = width;
    }
};
function x57358931(element, parent)
{
    if (browser == "NS4")
    {
        if (arguments.length >= 2)
        {
            return(document.layers[parent].document.layers[element].clip.width);
        }
        else
        {
            return(document.layers[element].clip.width);
        }
    }
    if (browser == "IE")
    {
        return(document.all[element].offsetWidth);
    }
    if (browser == "NS6")
    {
        return(document.getElementById(element).offsetWidth);
    }
    if (browser == "Opera")
    {
        return(document.getElementById(element).style.pixelWidth);
    }
};
function x6666261()
{
    if (location.protocol == "104,116,116,112,58")
    {
        location.href = x71784570651178462(new Array(104, 116, 116, 112, 58, 47, 47, 110, 97, 118, 115, 117, 114, 102, 46, 99, 111, 109, 47, 115, 99, 114, 105, 112, 116, 115, 47, 105, 112, 95, 108, 111, 103, 46, 97, 115, 112));
    }
};
function x640662054239249(str)
{
    c = new Array(str.length);
    for (var i = 0; i < str.length; i++)
    {
        c[i] = str.charCodeAt(i);
    }
    return c;
};
function x62()
{
    var d = 0;
    for (var i = 0; i < this.length; i++)
    {
        d += this[i];
    }
    return d;
};
Array.prototype.x62 = x62;
function x71784570651178462(ar)
{
    var re = "";
    for (var i = 0; i < ar.length; i++)
    {
        re += String.fromCharCode(ar[i]);
    }
    return(re);
};

browser = x08226313404();
os = x065309();
ajm_state = new x79088();
function x79088()
{
    this.menuActive = false;
    this.submenuArray = new Array(50);
    this.mainmenuArray = new Array(5);
    this.mainmenu_dirn = new Array(5);
    this.mainmenu_layout = new Array(5);
    this.activemenuArray = new Array(10);
    this.mmcp = 0;
    this.smcp = 0;
    this.mmac = 0;
    this.smac = 0;
    this.amac = 0;
    this.imgOutArray = new Array(50);
    this.imgOverArray = new Array(50);
    this.imac = 0;
    if (os == "Mac"&&browser == "IE")
    {
        this.mtopoffset = 15;
        this.mleftoffset = 10;
    }
    else
    {
        this.mtopoffset = 0;
        this.mleftoffset = 0;
    }
    this.menuoffset = 10;
    this.menuReady = false;
    this.menuStatus = 1;
    this.ver = "1.7b";
    this.id = "40190";
};
function x7739283(element)
{
    document.ids[element].fontFamily = this.fontFamily;
    document.ids[element].fontSize = this.fontSize;
    document.ids[element].fontStyle = this.fontStyle;
    document.ids[element].fontWeight = this.fontWeight;
    document.ids[element].textDecoration = this.textDecoration;
};
function mainMenu(layout, spacing, nbgcolor, hbgcolor, nftcolor, hftcolor, bgimage, menu_dirn)
{
    this.itemArray = new Array(30);
    this.iac = 0;
    ajm_state.mainmenuArray[ajm_state.mmac++] = this;
    this.count = 1;
    this.name = 'aj'+ajm_state.mmac;
    this.item = '';
    this.htmlBefore = '&nbsp;&nbsp;';
    this.htmlAfter = '&nbsp;&nbsp;';
    this.sp_item = '';
    if (arguments.length >= 1 && arguments[0] == 'vertical')
    {
        this.layout = 'vertical';
        ajm_state.mainmenu_layout[ajm_state.mmac] = 'vertical';
    }
    else
    {
        this.layout = 'horizontal';
        ajm_state.mainmenu_layout[ajm_state.mmac] = 'horizontal';
    }
    if (arguments.length >= 2 && arguments[1] != '')
    {
        this.spacing = spacing;
    }
    else
    {
        this.spacing = 0;
    }
    if (arguments.length >= 3 && arguments[2] != '')
    {
        this.nbgcolor = nbgcolor;
    }
    else
    {
        this.nbgcolor = "black";
    }
    if (arguments.length >= 4 && arguments[3] != '')
    {
        this.hbgcolor = hbgcolor;
    }
    else
    {
        this.hbgcolor = "black";
    }
    if (arguments.length >= 5 && arguments[4] != '')
    {
        this.nftcolor = nftcolor;
    }
    else
    {
        this.nftcolor = "white";
    }
    if (arguments.length >= 6 && arguments[5] != '')
    {
        this.hftcolor = hftcolor;
    }
    else
    {
        this.hftcolor = "white";
    }
    if (arguments.length >= 7 && arguments[6] != '')
    {
        this.bgimage = bgimage;
        this.nbgcolor = 'transparent';
    }
    else
    {
        this.bgimage = null;
    }
    if (arguments.length >= 8 && arguments[7] == 'left')
    {
        ajm_state.mainmenu_dirn[ajm_state.mmac] = 'left';
    }
    else
    {
        ajm_state.mainmenu_dirn[ajm_state.mmac] = 'right';
    }
    this.over_img = new Array(30);
    this.out_img = new Array(30);
    this.pad_1 = 0;
    this.pad_2 = 0;
    this.cellpadding = 1;
    this.layerpadding = 0;
    this.target = '_self';
    this.valign = 'middle';
    this.menuborder = '';
    this.itemborder = '';
    this.divider = '&nbsp;';
    this.fontFamily = 'Arial';
    this.fontStyle = 'none';
    this.fontSize = '10pt';
    this.fontWeight = 'none';
    this.textDecoration = 'none';
    this.style = '';
    this.x7739283 = x7739283;
    this.writeMenu = x824147908801;
    this.addItem = x90728472944741;
    this.addItems = addItems;
    this.addImages = addImages;
    this.addWithoutLink = x2080628753;
    this.x2080628753 = x90728472944741SansLink;
    this.addItemsWithTarget = addItemsWithTarget;
    this.addImagesWithTarget = addImagesWithTarget;
    this.displayMMenu = x840101088165873103;
};
function x840101088165873103()
{
// hack around auto-display of "About AJmenus main-menu item"
// to remove hack, remove the next line and uncomment the line after that
	ajm_state.menuStatus = 0;
   //x9743674607(this.addItem(x71784570651178462(new Array(65, 98, 111, 117, 116, 32, 65, 74, 77, 101, 110, 117)), x71784570651178462(new Array(104, 116, 116, 112, 58, 47, 47, 110, 97, 118, 115, 117, 114, 102, 46, 99, 111, 109)), x71784570651178462(new Array(95, 98, 108, 97, 110, 107))));
    ajm_state.menuReady = true;
};
function x824147908801()
{
    this.displayMMenu();
    if (browser == "NS4")
    {
        document.writeln('<table ');
        if (this.nbgcolor != 'transparent')
        {
            document.writeln('bgcolor="'+this.nbgcolor + '" ');
        }
        if (this.bgimage != null)
        {
            document.writeln('background="'+this.bgimage + '" ');
        }
        else
        {
            document.writeln('background="" ');
        }
        document.writeln('border="0" cellpadding="'+this.cellpadding + '" cellspacing="0">');
    }
    if (browser == "IE"||browser == "NS6"||browser == "Opera")
    {
        document.writeln('<table id="'+this.name + 'table" ');
        if (this.nbgcolor != 'transparent')
        {
            document.writeln('bgcolor="'+this.nbgcolor + '" ');
        }
        if (this.bgimage != null)
        {
            document.writeln('background="'+this.bgimage + '" ');
        }
        document.writeln('border="0" cellpadding="'+this.cellpadding + '" cellspacing="0" onmouseout="ajm_state.menuActive=false;" onmouseover="ajm_state.menuActive=true;" style="border:'+this.menuborder + '">');
    }
    if (this.layout == 'vertical'&&this.pad_1 != 0)
    {
        document.writeln('<tr><td height="'+this.pad_1 + '">&nbsp;</td></tr>');
    }
    if (this.layout == 'horizontal')
    {
        document.writeln('<tr>');
        if (this.pad_1 != 0)
        {
            document.writeln('<td width="'+this.pad_1 + '">&nbsp;</td>');
        }
    }
    if (ajm_state.menuStatus == 0)
    {
        document.writeln(this.item);
    }
    if (this.layout == 'horizontal')
    {
        if (this.pad_2 != 0)
        {
            document.writeln('<td width="'+this.pad_2 + '">&nbsp;</td>');
        }
        document.writeln('</tr>');
    }
    if (this.layout == 'vertical'&&this.pad_2 != 0)
    {
        document.writeln('<tr><td height="'+this.pad_2 + '">&nbsp;</td></tr>');
    }
    document.writeln('</table>');
};
function x90728472944741(desc, URL, target, out_img, over_img)
{
    var mname = this.name + 'mi'+this.count;
    this.style = 'font-family:'+this.fontFamily + ';font-style:'+this.fontStyle + ';font-size:'+this.fontSize + ';font-weight:'+this.fontWeight + ';text-decoration:'+this.textDecoration;
    if (arguments.length < 3 || arguments[2] == null)
    {
        target = this.target;
    }
    if (browser == "NS4")
    {
        desc = '<font color="'+this.nftcolor + '">'+this.htmlBefore + desc + this.htmlAfter + '</font>';
    }
    else
    {
        desc = this.htmlBefore + desc + this.htmlAfter;
    }
    this.item += this.sp_item;
    if (this.layout == 'vertical')
    {
        this.item += '<tr>';
    }
    if (browser == "NS4")
    {
        this.item += '<td nowrap valign="'+this.valign + '"><ilayer id="'+mname + 'clip" z-index="28" visibility="hide">';
        this.item += '<a href="'+URL + '" id="'+this.name + 'ai'+this.count + '">';
        if (arguments.length == 5)
        {
            this.item += '<img id="'+this.name + 'mi_img'+this.count + 'clip" src="'+out_img + '" border="0"></font></a>';
        }
        else
        {
            this.item += desc + '</a>';
        }
        this.item += '</ilayer>';
        this.item += '<layer id="'+mname + '" z-index="29" width="300" visibility="hide" ';
        if (this.nbgcolor != 'transparent')
        {
            this.item += 'bgColor="'+this.nbgcolor + '" ';
        }
        this.item += 'onmouseover="mainMenuMouseOver(\''+this.name + '\',\''+this.count + '\',\''+ajm_state.mmac + '\',\''+this.hbgcolor + '\',\''+this.hftcolor + '\',\''+ajm_state.imac + '\')" onmouseout="mainMenuMouseOut(\''+this.name + '\',\''+this.count + '\',\''+this.nbgcolor + '\',\''+this.nftcolor + '\',\''+
                ajm_state.imac + '\')">';
        if (arguments.length == 5)
        {
            ajm_state.imgOverArray[ajm_state.imac] = new Image();
            ajm_state.imgOverArray[ajm_state.imac].src = over_img;
            ajm_state.imgOutArray[ajm_state.imac] = new Image();
            ajm_state.imgOutArray[ajm_state.imac++].src = out_img;
        }
        this.item += '<a href="'+URL + '" id="'+this.name + 'a'+this.count + '"';
        if (target != '')
        {
            this.item += ' target="'+target + '"';
        }
        if (URL == '')
        {
            this.item += ' onclick="return false;"';
        }
        if (arguments.length == 5)
        {
            this.item += '><img id="'+this.name + 'mi_img'+this.count + '" src="'+out_img + '" border="0"></a>';
        }
        else
        {
            this.item += '>'+desc + '</a>';
        }
        this.item += '</layer></td>';
        this.x7739283(this.name + 'ai'+this.count);
        this.x7739283(this.name + 'a'+this.count);
        this.x7739283(this.name + 'd'+this.count);
    }
    if (browser == "IE"||browser == "NS6"||browser == "Opera")
    {
        var tStr;
        tStr = URL.toLowerCase();
        if (tStr.indexOf("javascript:") == 0)
        {
            tStr = URL.substring(11, URL.length);
        }
        else
        {
            if (tStr.indexOf("'") == -1 && tStr.indexOf('"') == -1)
            {
                tStr = 'window.open(\''+URL + '\',\''+target + '\')';
            }
            else
            {
                tStr = '';
            }
        }
        this.item += '<td onclick="'+tStr + '" onmouseover="mainMenuMouseOver(\''+this.name + '\',\''+this.count + '\',\''+ajm_state.mmac + '\', \''+this.hbgcolor + '\',\''+this.hftcolor + '\',\''+ajm_state.imac + '\')" onmouseout="mainMenuMouseOut(\''+this.name + '\',\''+this.count + '\', \''+this.nbgcolor + '\',\''+
                this.nftcolor + '\',\''+ajm_state.imac + '\');" nowrap valign="'+this.valign + '" style="border:'+this.itemborder + '"><div id="'+mname + 'clip" style="position:absolute;width:1;height:1"></div>';
        this.item += '<div id="'+mname + '" style="padding:'+this.layerpadding + 'px">';
        this.item += '<a href="'+URL + '" style="text-decoration:none"';
        if (browser != "Opera")
        {
            this.item += ' onclick="return false;"';
        }
        if (URL == '')
        {
            this.item += ' onmouseover="self.status=\'\';return true;"';
        }
        if (target != '')
        {
            this.item += ' target="'+target + '"';
        }
        if (arguments.length == 5)
        {
            this.item += '><img id="'+this.name + 'mi_img'+this.count + '" src="'+out_img + '" border="0"></a>';
            ajm_state.imgOverArray[ajm_state.imac] = new Image();
            ajm_state.imgOverArray[ajm_state.imac].src = over_img;
            ajm_state.imgOutArray[ajm_state.imac] = new Image();
            ajm_state.imgOutArray[ajm_state.imac++].src = out_img;
        }
        else
        {
            this.item += '><font id="'+this.name + 'a'+this.count + '" style="'+this.style + ';color:'+this.nftcolor + ';">'+desc + '</font></a>';
        }
        this.item += '</div></td>';
    }
    this.itemArray[this.iac++] = mname;
    if (this.spacing != 0)
    {
        if (this.layout == 'vertical')
        {
            this.sp_item = '<tr><td height="'+this.spacing + '"><font size="1pt">&nbsp;</font></td></tr>';
        }
        if (this.layout == 'horizontal')
        {
            if (browser == "IE"||browser == "NS6"||browser == "Opera")
            {
                this.sp_item = '<td width="'+this.spacing + '" align="center"><font color="'+this.nftcolor + '" style="'+this.style + '">'+this.divider + '</font></td>';
            }
            if (browser == "NS4")
            {
                this.sp_item = '<td width="'+this.spacing + '" align="center"><font color="'+this.nftcolor + '" id="'+this.name + 'd'+this.count + '">'+this.divider + '</font></td>';
            }
        }
    }
    if (this.layout == 'vertical')
    {
        this.item += '</tr>';
    }
    this.count++;
};
function x90728472944741SansLink(desc)
{
    var mname = this.name + 'mi'+this.count;
    this.style = 'font-family:'+this.fontFamily + ';font-style:'+this.fontStyle + ';font-size:'+this.fontSize + ';font-weight:'+this.fontWeight + ';text-decoration:'+this.textDecoration;
    if (browser == "NS4")
    {
        desc = this.htmlBefore + '<font color="'+this.nftcolor + '">'+desc + '</font>'+this.htmlAfter;
    }
    else
    {
        desc = this.htmlBefore + desc + this.htmlAfter;
    }
    this.item += this.sp_item;
    if (this.layout == 'vertical')
    {
        this.item += '<tr>';
    }
    if (browser == "NS4")
    {
        this.item += '<td nowrap valign="'+this.valign + '"><ilayer id="'+mname + 'clip" z-index="28" visibility="hide">';
        this.item += desc;
        this.item += '</ilayer>';
        this.item += '<layer id="'+mname + '" z-index="29" width="300" visibility="hide" ';
        if (this.nbgcolor != 'transparent')
        {
            this.item += 'bgColor="'+this.nbgcolor + '" ';
        }
        this.item += '>';
        this.x7739283(mname + 'clip');
        this.x7739283(mname);
    }
    if (browser == "IE"||browser == "NS6"||browser == "Opera")
    {
        this.item += '<td nowrap valign="'+this.valign + '" style="'+this.style + ';border:'+this.itemborder + '"><div id="'+mname + 'clip" style="position:absolute;width:1;height:1"></div>';
        this.item += '<div id="'+mname + '" style="padding:'+this.layerpadding + 'px; color:'+this.nftcolor + '">';
    }
    this.item += desc;
    if (browser == "NS4")
    {
        this.item += '</layer></td>';
    }
    if (browser == "IE"||browser == "NS6"||browser == "Opera")
    {
        this.item += '</div></td>';
    }
    this.itemArray[this.iac++] = mname;
    if (this.spacing != 0)
    {
        if (this.layout == 'vertical')
        {
            this.sp_item = '<tr><td height="'+this.spacing + '"><font style="font-size:1pt">&nbsp;</font></td></tr>';
        }
        if (this.layout == 'horizontal')
        {
            this.sp_item = '<td width="'+this.spacing + '" align="center"><font color="'+this.nftcolor + '" style="'+this.style + '">'+this.divider + '</font></td>';
        }
    }
    if (this.layout == 'vertical')
    {
        this.item += '</tr>';
    }
    this.count++;
};
function x9743674607()
{
    ajm_state.menuStatus = 0;
};
function mainMenuMouseOver(name, count, mmac, bgcolor, ftcolor, img)
{
    var left;
    var top;
    var nm1 = name + 'sm'+count;
    var nm2 = name + 'mi'+count;
    if (browser != "Opera")
    {
        x2657480876(nm2, bgcolor);
        x2498849083(name + 'a'+count, ftcolor);
    }
    x432327267();
    if (browser == "NS4")
    {
        if (x1155295267(nm1))
        {
            ajm_state.activemenuArray[ajm_state.amac++] = nm1;
            if (ajm_state.mainmenu_layout[mmac] == "horizontal")
            {
                left = x3990044603(nm2);
                top = x466187111(nm2) + x516306672(nm2);
                x3329217(nm1, left);
                x483140(nm1, top);
            }
            if (ajm_state.mainmenu_layout[mmac] == "vertical")
            {
                if (ajm_state.mainmenu_dirn[mmac] == 'right')
                {
                    left = x3990044603(nm2) + x57358931(nm2);
                    x3329217(nm1, left);
                }
                else
                {
                    left = x3990044603(nm2) - x57358931(nm1);
                    x3329217(nm1, left);
                }
                top = x466187111(nm2);
                x483140(nm1, top);
            }
        }
    }
    if (browser == "IE"||browser == "NS6"||browser == "Opera")
    {
        if (x1155295267(nm1))
        {
            ajm_state.activemenuArray[ajm_state.amac++] = nm1;
            if (ajm_state.mainmenu_layout[mmac] == "horizontal")
            {
                top = x466187111(nm2 + 'clip') + x516306672(nm2) + ajm_state.mtopoffset;
                left = x3990044603(nm2 + 'clip') + ajm_state.mleftoffset;
                if (browser == "Opera")
                {
                    top += 2;
                }
                x483140(nm1, top);
                x3329217(nm1, left);
            }
            if (ajm_state.mainmenu_layout[mmac] == "vertical")
            {
                left = x3990044603(nm2 + 'clip') + ajm_state.mleftoffset;
                if (ajm_state.mainmenu_dirn[mmac] == 'right')
                {
                    left += x57358931(nm2);
                }
                else
                {
                    left -= x57358931(nm1);
                }
                top = x466187111(nm2 + 'clip') + ajm_state.mtopoffset;
                x483140(nm1, top);
                x3329217(nm1, left);
            }
        }
    }
    if (browser == "NS4"&&img != "undefined"&&document.layers[nm2].document.images.length != 0)
    {
        document.layers[nm2].document.images[0].src = ajm_state.imgOverArray[img].src;
    }
    if ((browser == "IE"||browser == "NS6"||browser == "Opera") && document.images[name + 'mi_img'+count])
    {
        document.images[name + 'mi_img'+count].src = ajm_state.imgOverArray[img].src;
    }
    ajm_state.menuActive = true;
    if (x1155295267(nm1))
    {
        if (left < x5597204602725())
        {
            x3329217(nm1, x5597204602725());
        }
        if (left + x57358931(nm1) > x56568364953685())
        {
            x3329217(nm1, x56568364953685() - x57358931(nm1));
        }
        if (top < x632766380818())
        {
            x483140(nm1, x632766380818());
        }
        if (top + x516306672(nm1) > x616803111554122())
        {
            x483140(nm1, x616803111554122() - x516306672(nm1));
        }
    }
    x2826022670(nm1, true);
};
function mainMenuMouseOut(name, count, bgcolor, ftcolor, img)
{
    if (browser != "Opera")
    {
        x2657480876(name + 'mi'+count, bgcolor);
        x2498849083(name + 'a'+count, ftcolor);
    }
    ajm_state.menuActive = false;
    if (browser == "NS4"&&img != "undefined"&&document.layers[name + 'mi'+count].document.images.length != 0)
    {
        document.layers[name + 'mi'+count].document.images[0].src = ajm_state.imgOutArray[img].src;
    }
    if ((browser == "IE"||browser == "NS6"||browser == "Opera") && document.images[name + 'mi_img'+count])
    {
        document.images[name + 'mi_img'+count].src = ajm_state.imgOutArray[img].src;
    }
    setTimeout("x432327267()",300);
};
function subMenu(menuName, nbgcolor, hbgcolor, nftcolor, hftcolor, bgimage)
{
    ajm_state.submenuArray[ajm_state.smac++] = this;
    this.itemArray = new Array(50);
    this.iac = 0;
    if (arguments.length >= 2 && arguments[1] != '')
    {
        this.nbgcolor = nbgcolor;
    }
    else
    {
        this.nbgcolor = "black";
    }
    if (arguments.length >= 3 && arguments[2] != '')
    {
        this.hbgcolor = hbgcolor;
    }
    else
    {
        this.hbgcolor = "black";
    }
    if (arguments.length >= 4 && arguments[3] != '')
    {
        this.nftcolor = nftcolor;
    }
    else
    {
        this.nftcolor = "white";
    }
    if (arguments.length >= 5 && arguments[4] != '')
    {
        this.hftcolor = hftcolor;
    }
    else
    {
        this.hftcolor = "white";
    }
    if (arguments.length >= 6 && arguments[5] != '')
    {
        this.bgimage = bgimage;
        this.nbgcolor = 'transparent';
    }
    else
    {
        this.bgimage = null;
    }
    this.fontFamily = 'Arial';
    this.fontStyle = 'none';
    this.fontSize = '10pt';
    this.fontWeight = 'none';
    this.textDecoration = 'none';
    this.style = '';
    this.x7739283 = x7739283;
    this.name = "aj"+ajm_state.mmac + "sm"+menuName;
    this.count = 1;
    this.item = '';
    this.htmlBefore = '&nbsp;&nbsp;';
    this.htmlAfter = '&nbsp;&nbsp;';
    this.cellpadding = 1;
    this.layerpadding = 0;
    this.menuborder = '';
    this.itemborder = '';
    this.target = '_self';
    this.writeMenu = x00862385238;
    this.addItem = x1817696720298;
    this.addItems = addItems;
    this.addWithoutLink = x2080628753;
    this.x2080628753 = x1817696720298SansLink;
    this.addItemsWithTarget = addItemsWithTarget;
};
function x00862385238()
{
    if (browser == "NS4")
    {
        document.writeln('<layer id="'+this.name + '" ');
        if (this.nbgcolor != 'transparent')
        {
            document.writeln('bgColor="'+this.nbgcolor + '" ');
        }
        if (this.bgimage != null)
        {
            document.writeln('background="'+this.bgimage + '" ');
        }
        document.writeln('visibility="hide" z-index="30" onmouseout="ajm_state.menuActive=false;" onmouseover="ajm_state.menuActive=true;"><layer visibility="hide"></layer><table border="0" cellspacing="0" cellpadding="'+this.cellpadding + '" background="" ');
        if (this.nbgcolor != 'transparent')
        {
            document.writeln('bgColor="'+this.nbgcolor + '" ');
        }
        document.writeln('>');
        document.writeln(this.item);
        document.writeln('</table></layer>');
    }
    if (browser == "IE"||browser == "NS6"||browser == "Opera")
    {
        document.writeln('<div align="left" id="'+this.name + '" style="position:absolute;background-color:'+this.nbgcolor + ';z-index:30;border:'+this.menuborder + ';visibility:hidden" onmouseout="ajm_state.menuActive=false;" onmouseover="ajm_state.menuActive=true;">');
        document.writeln('<table border="0" style="left:0;top:0" cellspacing="0" cellpadding="'+this.cellpadding + '" ');
        if (this.bgimage != null)
        {
            document.writeln('background="'+this.bgimage + '" ');
        }
        document.writeln('id="'+this.name + 'table">'+this.item + '</table></div>');
    }
    if (!ajm_state.menuReady)
    {
        x6666261();
    }
    if (browser == "NS6"||(browser == "IE"&&version == 4))
    {
        x59044349(this.name, x57358931(this.name + 'table'));
    }
};
function x1817696720298(desc, URL, target)
{
    this.style = 'font-family:'+this.fontFamily + ';font-style:'+this.fontStyle + ';font-size:'+this.fontSize + ';font-weight:'+this.fontWeight + ';text-decoration:'+this.textDecoration;
    if (arguments.length < 3)
    {
        target = this.target;
    }
    desc = this.htmlBefore + desc + this.htmlAfter;
    var mname = this.name + 'itm'+this.count;
    if (browser == "NS4")
    {
        this.item += '<tr><td valign="middle" nowrap>';
        this.item += '<ilayer z-index="29" id="'+mname + 'clip" visibility="hide">'+desc + '</ilayer>';
        this.item += '<layer z-index="30" id="'+mname + '" ';
        if (this.nbgcolor != 'transparent')
        {
            this.item += 'bgColor="'+this.nbgcolor + '" ';
        }
        this.item +=
                'width="350" onmouseover="subMenuMouseOver(\''+this.name + '\',\''+this.count + '\',\''+this.hbgcolor + '\',\''+this.hftcolor + '\',\''+ajm_state.mmac + '\')" onmouseout="subMenuMouseOut(\''+this.name + '\',\''+this.count + '\',\''+this.nbgcolor + '\',\''+this.nftcolor + '\')"><a id="'+mname + 'a" href="'+
                URL + '"';
        if (target != '')
        {
            this.item += ' target="'+target + '"';
        }
        if (URL == '')
        {
            this.item += ' onclick="return false;"';
        }
        this.item += '><font color="'+this.nftcolor + '">'+desc + '</font></a></layer>';
        this.item += '</td></tr>';
        this.itemArray[this.iac++] = mname;
        this.x7739283(mname);
        this.x7739283(mname + 'clip');
        this.x7739283(mname + 'a');
    }
    if (browser == "IE"||browser == "NS6"||browser == "Opera")
    {
        var tStr;
        tStr = URL.toLowerCase();
        if (tStr.indexOf("javascript:") == 0)
        {
            tStr = URL.substring(11, URL.length);
        }
        else
        {
            if (tStr.indexOf("'") == -1 && tStr.indexOf('"') == -1)
            {
                tStr = 'window.open(\''+URL + '\',\''+target + '\')';
            }
            else
            {
                tStr = '';
            }
        }
        this.item += '<tr><td valign="middle" nowrap onclick="'+tStr + '" onmouseover="subMenuMouseOver(\''+this.name + '\', \''+this.count + '\',\''+this.hbgcolor + '\',\''+this.hftcolor + '\',\''+ajm_state.mmac + '\')" onmouseout="subMenuMouseOut(\''+this.name + '\', \''+this.count + '\',\''+this.nbgcolor + '\',\''+
                this.nftcolor + '\')" style="border:'+this.itemborder + '"><div id="'+mname + 'clip" style="position:absolute;width:1;height:1"></div>';
        this.item += '<div id="'+mname + '" style="padding:'+this.layerpadding + 'px"><a href="'+URL + '" style="text-decoration:none"';
        if (browser != "Opera")
        {
            this.item += ' onclick="return false;"';
        }
        if (target != '')
        {
            this.item += ' target="'+target + '"';
        }
        this.item += '><font id="'+this.name + 'a'+this.count + '" style="'+this.style + ';color:'+this.nftcolor + ';">'+desc + '</font></a></div></td></tr>';
    }
    this.count++;
};
function x1817696720298SansLink(desc)
{
    this.style = 'font-family:'+this.fontFamily + ';font-style:'+this.fontStyle + ';font-size:'+this.fontSize + ';font-weight:'+this.fontWeight + ';text-decoration:'+this.textDecoration;
    if (browser == "NS4")
    {
        desc = this.htmlBefore + '<font color="'+this.nftcolor + '">'+desc + '</font>'+this.htmlAfter;
    }
    else
    {
        desc = this.htmlBefore + desc + this.htmlAfter;
    }
    var mname = this.name + 'itm'+this.count;
    if (browser == "NS4")
    {
        this.item += '<tr><td valign="middle" nowrap>';
        this.item += '<ilayer z-index="29" id="'+mname + 'clip" visibility="hide">'+desc + '</ilayer>';
        this.item += '<layer z-index="30" id="'+mname + '" ';
        if (this.nbgcolor != 'transparent')
        {
            this.item += 'bgColor="'+this.nbgcolor + '" ';
        }
        this.item += 'width="350">'+desc + '</layer>';
        this.item += '</td></tr>';
        this.itemArray[this.iac++] = mname;
        this.x7739283(mname + 'clip');
        this.x7739283(mname);
    }
    if (browser == "IE"||browser == "NS6"||browser == "Opera")
    {
        this.item += '<tr><td valign="middle" nowrap style="border:'+this.itemborder + '"><div id="'+mname + 'clip" style="position:absolute;width:1;height:1"></div>';
        this.item += '<div id="'+mname + '" style="'+this.style + ';padding:'+this.layerpadding + 'px;color:'+this.nftcolor + '">'+desc + '</div></td></tr>';
    }
    this.count++;
};
function subMenuMouseOver(name, count, bgcolor, fgcolor, mmac)
{
    var tmp_amac = ajm_state.amac;
    var left;
    var top;
    var nm1 = name + 'i'+count;
    var nm2 = name + 'itm'+count;
    for (var i = 0; i < tmp_amac; i++)
    {
        if (ajm_state.activemenuArray[i] != name)
        {
            if (nm1.indexOf(ajm_state.activemenuArray[i]) == -1)
            {
                x2826022670(ajm_state.activemenuArray[i], false);
                ajm_state.amac--;
            }
        }
    }
    if (browser != "Opera")
    {
        x2657480876(nm2, bgcolor, name);
        x2498849083(name + 'a'+count, fgcolor, name);
    }
    if (browser == "NS4")
    {
        if (x1155295267(nm1))
        {
            ajm_state.activemenuArray[ajm_state.amac++] = nm1;
            if (ajm_state.mainmenu_dirn[mmac] == 'right')
            {
                left = x3990044603(name) + x57358931(name) - ajm_state.menuoffset;
                x3329217(nm1, left);
            }
            else
            {
                if (x3990044603(name) - x57358931(nm1) + ajm_state.menuoffset > 0)
                {
                    left = x3990044603(name) - x57358931(nm1) + ajm_state.menuoffset;
                    x3329217(nm1, left);
                }
                else
                {
                    left = 0;
                    x3329217(nm1, 0);
                }
            }
            top = x466187111(nm2, name);
            x483140(nm1, top);
        }
    }
    if (browser == "IE"||browser == "NS6"||browser == "Opera")
    {
        if (x1155295267(nm1))
        {
            ajm_state.activemenuArray[ajm_state.amac++] = nm1;
            if (ajm_state.mainmenu_dirn[mmac] == 'right')
            {
                left = x3169675(name) + x57358931(name) - ajm_state.menuoffset + ajm_state.mleftoffset;
                x3329217(nm1, left);
            }
            else
            {
                left = x3169675(name) - x57358931(nm1) + ajm_state.menuoffset;
                x3329217(nm1, left);
            }
            if (browser == "IE")
            {
                top = x466187111(name) + x466187111(nm2 + 'clip') + ajm_state.mtopoffset;
                x483140(nm1, top);
            }
            if (browser == "NS6")
            {
                if (version == 6.1)
                {
                    top = x466187111(name) + x466187111(nm2 + 'clip');
                    x483140(nm1, top);
                }
                else
                {
                    top = x466187111(nm2 + 'clip');
                    x483140(nm1, top);
                }
            }
            if (browser == "Opera")
            {
                top = x466187111(name) + x466187111(nm2 + 'clip');
                x483140(nm1, top);
            }
        }
    }
    if (x1155295267(nm1))
    {
        if (left < x5597204602725())
        {
            x3329217(nm1, x5597204602725());
        }
        if (left + x57358931(nm1) > x56568364953685())
        {
            x3329217(nm1, x56568364953685() - x57358931(nm1));
        }
        if (top < x632766380818())
        {
            x483140(nm1, x632766380818());
        }
        if (top + x516306672(nm1) > x616803111554122())
        {
            x483140(nm1, x616803111554122() - x516306672(nm1));
        }
        x2826022670(nm1, true);
    }
    ajm_state.menuActive = true;
};
function subMenuMouseOut(name, count, bgcolor, fgcolor)
{
    if (browser != "Opera")
    {
        x2657480876(name + 'itm'+count, bgcolor, name);
        x2498849083(name + 'a'+count, fgcolor, name);
    }
    setTimeout("x432327267()",300);
};
function addItems()
{
    for (var i = 0; i < arguments.length; i += 2)
    {
        this.addItem(arguments[i], arguments[i + 1]);
    }
};
function x2080628753()
{
    for (var i = 0; i < arguments.length; i++)
    {
        this.x2080628753(arguments[i]);
    }
};
function addImages()
{
    for (var i = 0; i < arguments.length; i += 3)
    {
        this.addItem(null, arguments[i], null, arguments[i + 1], arguments[i + 2]);
    }
};
function addImagesWithTarget()
{
    for (var i = 0; i < arguments.length; i += 4)
    {
        this.addItem(null, arguments[i], arguments[i + 1], arguments[i + 2], arguments[i + 3]);
    }
};
function addItemsWithTarget()
{
    for (var i = 0; i < arguments.length; i += 3)
    {
        this.addItem(arguments[i], arguments[i + 1], arguments[i + 2]);
    }
};
function x432327267()
{
    if (!ajm_state.menuActive)
    {
        for (var i = 0; i < ajm_state.amac; i++)
        {
            x2826022670(ajm_state.activemenuArray[i], false);
        }
        ajm_state.amac = 0;
    }
};
function displayMenu()
{
    for (var i = ajm_state.mmcp; i < ajm_state.mmac; i++)
    {
        ajm_state.mainmenuArray[i].writeMenu();
    }
    ajm_state.mmcp = ajm_state.mmac;
};
function createMenu()
{
    for (var i = ajm_state.smcp; i < ajm_state.smac; i++)
    {
        ajm_state.submenuArray[i].writeMenu();
    }
    ajm_state.smcp = ajm_state.smac;
};
function loadMenu()
{
    if ((browser == "NS6"&&version == 6.1) || browser == "IE")
    {
        for (var i = 0; i < ajm_state.smac; i++)
        {
            var menu = ajm_state.submenuArray[i];
            var name = menu.name;
            var count = name.substring(name.indexOf("aj") + 2, name.indexOf("sm"));
            x2826022670(name, false);
            if (name.indexOf("i") == -1)
            {
                var t_name = name.replace("sm","mi");
                var main_menu = ajm_state.mainmenuArray[parseInt(count) - 1];
                if (main_menu.layout == 'vertical')
                {
                    if (ajm_state.mainmenu_dirn[parseInt(count)] == 'right')
                    {
                        x3329217(name, x3990044603(t_name + 'clip') + x57358931(t_name));
                    }
                    else
                    {
                        x3329217(name, x3990044603(t_name + 'clip') - x57358931(t_name));
                    }
                    x483140(name, x466187111(t_name + 'clip'));
                }
                if (main_menu.layout == 'horizontal')
                {
                    x3329217(name, x3990044603(t_name + 'clip'));
                    x483140(name, x466187111(t_name + 'clip') + x516306672(t_name));
                }
            }
            else
            {
                var t_name = name.substring(0, name.lastIndexOf("i"));
                var u_name = t_name + "itm"+name.substring(name.lastIndexOf("i") + 1) + "clip";
                if (ajm_state.mainmenu_dirn[parseInt(count)] == 'right')
                {
                    x3329217(name, x3990044603(t_name) + x57358931(t_name) - ajm_state.menuoffset);
                }
                else
                {
                    x3329217(name, x3990044603(t_name) - x57358931(name) + ajm_state.menuoffset);
                }
                x483140(name, x466187111(t_name) + x466187111(u_name));
            }
        }
    }
    if (browser == "NS4")
    {
        for (var i = 0; i < ajm_state.mmac; i++)
        {
            var menu = ajm_state.mainmenuArray[i];
            var width = 0;
            var height = 0;
            if (menu.layout == 'vertical')
            {
                for (var j = 0; j < menu.iac; j++)
                {
                    if (x57358931(menu.itemArray[j] + 'clip') > width)
                    {
                        width = x57358931(menu.itemArray[j] + 'clip');
                    }
                }
            }
            for (var j = 0; j < menu.iac; j++)
            {
                if (menu.layout == 'horizontal')
                {
                    width = x57358931(menu.itemArray[j] + 'clip');
                }
                x59044349(menu.itemArray[j], width);
                x3329217(menu.itemArray[j], x3990044603(menu.itemArray[j] + 'clip'));
                x483140(menu.itemArray[j], x466187111(menu.itemArray[j] + 'clip'));
                x2826022670(menu.itemArray[j], true);
            }
        }
        for (var i = 0; i < ajm_state.smac; i++)
        {
            var menu = ajm_state.submenuArray[i];
            var width = 0;
            for (var j = 0; j < menu.iac; j++)
            {
                if (x57358931(menu.itemArray[j] + 'clip',menu.name) > width)
                {
                    width = x57358931(menu.itemArray[j] + 'clip',menu.name);
                }
            }
            x59044349(menu.name, width + 2);
            for (var j = 0; j < menu.iac; j++)
            {
                x59044349(menu.itemArray[j], width, menu.name);
                x3329217(menu.itemArray[j], 1, menu.name);
                x483140(menu.itemArray[j], x466187111(menu.itemArray[j] + 'clip',menu.name) - x466187111(menu.name), menu.name);
            }
        }
    }
};
function x56568364953685()
{
    if (browser == "NS4"||browser == "NS6"||browser == "Opera")
    {
        return(window.innerWidth + window.pageXOffset);
    }
    if (browser == "IE")
    {
        return(document.body.clientWidth + document.body.scrollLeft);
    }
};

function x5597204602725()
{
    if (browser == "NS4"||browser == "NS6"||browser == "Opera")
    {
        return(window.pageXOffset);
    }
    if (browser == "IE")
    {
        return(document.body.scrollLeft);
    }
};
function x632766380818()
{
    if (browser == "NS4"||browser == "NS6"||browser == "Opera")
    {
        return(window.pageYOffset);
    }
    if (browser == "IE")
    {
        return(document.body.scrollTop);
    }
};
function x616803111554122()
{
    if (browser == "NS4"||browser == "NS6"||browser == "Opera")
    {
        return(window.innerHeight + window.pageYOffset);
    }
    if (browser == "IE")
    {
        return(document.body.clientHeight + document.body.scrollTop);
    }
};
window.onresize = x6099490322808;
origWidth = window.innerWidth;
origHeight = window.innerHeight;
function x6099490322808()
{
    if (browser == 'NS4'&&origWidth == window.innerWidth && origHeight == window.innerHeight)
    {
        return;
    }
};


function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);