<!--//--><![CDATA[//><!--

/******************************************************************************
 * 
 *  javascript functions for enabling the CSS menus on IE 5/6
 * 
 ******************************************************************************/

sfHover = function() {
  ismac = ( (navigator.userAgent.indexOf("mac") != -1) || (navigator.userAgent.indexOf("Mac") != -1) );  
//    var mac = (navigator.userAgent.indexOf("mac") != -1);
    
    if(document.all&&document.getElementById){ // ie only
        var sfEls = document.getElementById("nav").getElementsByTagName("LI");
        for (var i=0; i<sfEls.length; i++) {
            sfEls[i].onmouseover=function() {   this.className+=" over";    }
            sfEls[i].onmouseout=function() {    this.className=this.className.replace(new RegExp(" over\\b"), "");   }
        }
        
        // side navigation
        // turned off IE mac hovers due to css complications
        if(document.getElementById("sidenav") && (!ismac)) {
            var sfEls = document.getElementById("sidenav").getElementsByTagName("LI");
            for (var i=0; i<sfEls.length; i++) {
                sfEls[i].onmouseover=function() {   this.className+=" over";    }
                sfEls[i].onmouseout=function() {    this.className=this.className.replace(new RegExp(" over\\b"), "");   }        
            }
        }
        
        
    }
}

// (C) 2002 www.CodeLifter.com
// frontpage logo rotating script
var SlideShowSpeed = 3000;
var CrossFadeDuration = 4;
var Picture = new Array(); 
var Caption = new Array(); 
Picture[1]  = 'customers/Akamai.gif';
Picture[2]  = 'customers/img_customers_l_aol.gif';
Picture[3]  = 'customers/Atomz.gif';
Picture[4]  = 'customers/img_customers_attivio.jpg';
Picture[5]  = 'customers/img_customers_amazon.gif';
Picture[6]  = 'customers/Autodesk.png';
Picture[7]  = 'customers/img_customers_biglobe.jpg';
Picture[8]  = 'customers/BBN.gif';
Picture[9]  = 'customers/Bing.jpg';
Picture[10]  = 'customers/CACI.gif';
Picture[11]  = 'customers/Clearwell.gif';
Picture[12]  = 'customers/Convera.gif';
Picture[13]  = 'customers/daticoneed.jpg';
Picture[14]  = 'customers/Endeca.gif';
Picture[15]  = 'customers/fast.jpg';
Picture[16]  = 'customers/img_customers_feedster.gif';
Picture[17]  = 'customers/fujitsu.jpg';
Picture[18]  = 'customers/img_customers_nttresonant.gif';
Picture[19]  = 'customers/img_customers_l_google.gif';
Picture[20]  = 'customers/Hanks.gif';
Picture[21]  = 'customers/hitachi.jpg';
Picture[22]  = 'customers/img_customers_l_hp.gif';
Picture[23]  = 'customers/inqtel.jpg';
Picture[24]  = 'customers/infoseek.jpg';
Picture[25]  = 'customers/InQuira.gif';
Picture[26]  = 'customers/Ipro.gif';
Picture[27]  = 'customers/kmpg.gif';
Picture[28]  = 'customers/img_customers_kodak.gif';
Picture[29]  = 'customers/img_customers_l_koreawizenu.gif';
Picture[30]  = 'customers/img_customers_l_llbean.gif';
Picture[31]  = 'customers/img_customers_l_lucent.gif';
Picture[32]  = 'customers/mcafee.png';
Picture[33]  = 'customers/microsoft.png';
Picture[34]  = 'customers/Mimosa.png';
Picture[35]  = 'customers/MITRE.gif';
Picture[36]  = 'customers/NCBC.png';
Picture[37]  = 'customers/img_customers_nct.GIF';
Picture[38]  = 'customers/img_customers_l_nttdata.gif';
Picture[39]  = 'customers/nec.jpg';
Picture[40]  = 'customers/Northrup.gif';
Picture[41]  = 'customers/img_customers_l_overture.gif';
Picture[42]  = 'customers/img_customers_l_peoplesoft.gif';
Picture[43]  = 'customers/RightNow.gif';
Picture[44]  = 'customers/SAIC.gif';
Picture[45]  = 'customers/img_customers_l_swag.gif';
Picture[46]  = 'customers/yahoo.jpg';
Caption[1]  = " ";
Caption[2]  = " ";
Caption[3]  = " ";
Caption[4]  = " ";
Caption[5]  = " ";
Caption[6]  = " ";
Caption[7]  = " ";
Caption[8]  = " ";
Caption[9]  = " ";
Caption[10]  = " ";
Caption[11]  = " ";
Caption[12]  = " ";
Caption[13]  = " ";
Caption[14]  = " ";
Caption[15]  = " ";
Caption[16]  = " ";
Caption[17]  = " ";
Caption[18]  = " ";
Caption[19]  = " ";
Caption[20]  = " ";
Caption[21]  = " ";
Caption[22]  = " ";
Caption[23]  = " ";
Caption[24]  = " ";
Caption[25]  = " ";
Caption[26]  = " ";
Caption[27]  = " ";
Caption[28]  = " ";
Caption[29]  = " ";
Caption[30]  = " ";
Caption[31]  = " ";
Caption[32]  = " ";
Caption[33]  = " ";
Caption[34]  = " ";
Caption[35]  = " ";
Caption[36]  = " ";
Caption[37]  = " ";
Caption[38]  = " ";
Caption[39]  = " ";
Caption[40]  = " ";
Caption[41]  = " ";
Caption[42]  = " ";
Caption[43]  = " ";
Caption[44]  = " ";
Caption[45]  = " ";
Caption[46]  = " ";
var tss;
var iss;
var jss = 1;
var pss = Picture.length-1;
var preLoad = new Array();
for (iss = 1; iss < pss+1; iss++){
preLoad[iss] = new Image();
preLoad[iss].src = Picture[iss];}
function runSlideShow(){
if (document.all){
document.images.PictureBox.style.filter="blendTrans(duration=3)";
document.images.PictureBox.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox.filters.blendTrans.Apply();}
document.images.PictureBox.src = preLoad[jss].src;
if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss];
if (document.all) document.images.PictureBox.filters.blendTrans.Play();
jss = jss + 1;
if (jss > (pss)) jss=1;
tss = setTimeout('runSlideShow()', SlideShowSpeed);
}
//if (window.attachEvent) window.attachEvent("onload", sfHover);
//window.onload=sfHover;
//--><!]]>