

function mousein(newid,id)
{	    
    document.getElementById("txtid"+id).style.color="#126994";
    if(newid!="")
    document.getElementById("imgid"+id).src ="images/"+newid;
}
function mouseout(newid,id)
{
  if((id<3) || (id==7) || (id==8))
        document.getElementById("txtid"+id).style.color="#4d504d";
  else
        document.getElementById("txtid"+id).style.color="#6eb206";
  
  if (newid!="")
  document.getElementById("imgid"+id).src ="images/"+newid;
  
}

function movein(hid)
{
    document.getElementById("aid"+hid).style.borderBottom='2px solid #6eb206';
    var pagename=window.location.pathname;
    var pagename1=pagename.substring(pagename.lastIndexOf('/')+1);
    if (pagename1=="aboutus.aspx")
    {
        document.getElementById("aid1").style.borderBottom='0px solid #ffffff';
        document.getElementById("aid1").style.cursor="default";
    }
    if (pagename1=="technology-service.aspx")
    {
        document.getElementById("aid2").style.borderBottom='0px solid #ffffff';
         document.getElementById("aid2").style.cursor="default";
    }
    if (pagename1=="technology-search.aspx")
    {
        document.getElementById("aid3").style.borderBottom='0px solid #ffffff';
         document.getElementById("aid3").style.cursor="default";
    }
    if (pagename1=="careers.aspx")
    {
        document.getElementById("aid4").style.borderBottom='0px solid #ffffff';
         document.getElementById("aid4").style.cursor="default";
    }
}
function moveout(hid)
{
    document.getElementById("aid"+hid).style.border='none';
}
	