
      <!-- //
      
        welcome_off = new Image();
        welcome_off.src = "images/jsmc_js_welcome_off.gif";
        welcome_on = new Image();
        welcome_on.src = "images/jsmc_js_welcome_on.gif";

        aboutus_off = new Image();
        aboutus_off.src = "images/jsmc_js_aboutus_off.gif";
        aboutus_on = new Image();
        aboutus_on.src = "images/jsmc_js_aboutus_on.gif";

        ourservices_off = new Image();
        ourservices_off.src = "images/jsmc_js_ourservices_off.gif";
        ourservices_on = new Image();
        ourservices_on.src = "images/jsmc_js_ourservices_on.gif";

        companypolicies_off = new Image();
        companypolicies_off.src = "images/jsmc_js_companypolicies_off.gif";
        companypolicies_on = new Image();
        companypolicies_on.src = "images/jsmc_js_companypolicies_on.gif";

        jobopportunities_off = new Image();
        jobopportunities_off.src = "images/jsmc_js_jobopportunities_off.gif";
        jobopportunities_on = new Image();
        jobopportunities_on.src = "images/jsmc_js_jobopportunities_on.gif";

        whatourclientssay_off = new Image();
        whatourclientssay_off.src = "images/jsmc_js_whatourclientssay_off.gif";
        whatourclientssay_on = new Image();
        whatourclientssay_on.src = "images/jsmc_js_whatourclientssay_on.gif";

        contactus_off = new Image();
        contactus_off.src = "images/jsmc_js_contactus_off.gif";
        contactus_on = new Image();
        contactus_on.src = "images/jsmc_js_contactus_on.gif";

        function swapper(imgName,imgObjName)		
          {
          if (document.images)
            {
            document.images[imgName].src = eval(imgObjName + ".src");
            }
          }

/*        function even(evt)
          {
          var t="";
          t=t.concat(evt.target);
          if (t.charAt(0)=="[")
            {
            revemenu(0);
            }
          }
        function odd1(evt)
          {
          revemenu(1);
          }
        function odd2(evt)
          {
          revemenu(2);
          }
        function odd3(evt)
          {
          revemenu(3);
          }
        function odd4(evt)
          {
          revemenu(4);
          }
        function odd5(evt)
          {
          revemenu(5);
          }
        function odd6(evt)
          {
          revemenu(6);
          }
        function odd7(evt)
          {
          revemenu(7);
          }

        function revemenu(n)
          {
          if (navigator.appName == 'Netscape')
            {
            isNS = true
            }
          else
            {
            isNS = false
            }
          if (document.getElementById&&!document.all)
            {
            is4=false;
            }
          else
            {
            is4=true;
            }
          if (isNS&&is4)
            {
            document.captureEvents(Event.CLICK);
            document.onclick = even;
            for(i=1; i<=7; i++)
              {
              eval("document.men"+i+".captureEvents(Event.MOUSEOUT | Event.MOUSEOVER | Event.Click)");
              eval("document.men"+i+".onmouseout = even");
              eval("document.men"+i+".onclick = even");
              eval("document.men"+i+".onmouseover = odd"+i);
              if (n != i)
                {
                eval('document.men'+i+'.visibility="hidden"');
                }
              else
                {
                eval('document.men'+i+'.visibility="visible"');
                }
              document.releaseEvents(Event.CLICK);
              }
            }
          else if (!isNS)
            {
            for(i=1; i<=7; i++)
              {
              if (n != i)
                {
                eval('document.all.men'+i+'.style.visibility="hidden"');
                }
              else
                {
                eval('document.all.men'+i+'.style.visibility="visible"');
                }
              }
            }
          else if (!is4)
            {
            for(i=1; i<=7; i++)
              {
              if (n != i)
                {
                eval('document.getElementById("men'+i+'").style.visibility="hidden"');
                }
              else
                {
                eval('document.getElementById("men'+i+'").style.top="0px"');
                eval('document.getElementById("men'+i+'").style.backgroundColor="transparent"');
                eval('document.getElementById("men'+i+'").style.visibility="visible"');
                document.releaseEvents(Event.CLICK);
                }
              }
            }
          }
          var ver11=false;
*/

/* DHTML Menu System.
   Original code from Computer Arts (www.computerarts.co.uk)
   which handled the old IE 4 (document.all) and 
   old Netscape 4 (document.layers).
   I have added support for the globally standard
   W3C DOM (document.getElementById).
*/

// An array of all the menu IDs
idBundle=new Array();
idBundle[0]="men1";
idBundle[1]="men2";
idBundle[2]="men3";

// Determine how the browser handles dynamic information
ie=(document.all)?1:0;
dom=(document.getElementById)?1:0;
ns4=(document.layers)?1:0;

// Handle the drop-down menus
function showMenu(menuId) {
 currentMenu=menuId; hideAll(); showItNow=1; showIt(menuId);
} // end function showMenu

function showIt(menuId) {
 if (ie) {eval(idBundle[menuId]+'.style.visibility="visible"');}
 if (dom) {eval('document.getElementById("'+idBundle[menuId]+'").style.visibility="visible"');}
 if (ns4) {eval('document.'+idBundle[menuId]+'.visibility="show"');}
} // end function showIt

function hideMenu() {
 currentMenu=-1; setTimeout('hideAll()',500);
} // end function hideMenu

currentMenu=-1;

function hideAll() {
 for (i=0; i<idBundle.length; i++) {  
  hideIt=0; checkMousePosition(i);
  if (ie && currentMenu!=i) { 
   if (hideIt) {eval(idBundle[i]+'.style.visibility="hidden"');} 
  } // end if ie exists and currentMenu isn't i 
  
  if ((dom && currentMenu!=i)) {
   if (hideIt) {eval('document.getElementById("'+idBundle[i]+'").style.visibility="hidden"');}
  } // end if dom exits and currentMenu isn't i
  
  if (ns4 && currentMenu!=i) { 
   if (hideIt) {eval('document.'+idBundle[i]+'.visibility="hide"');}
  } // end if ns4 exists and currentMenu isn't i
 } // end for loop, i is 0 to length of idBundle
} // end function hideAll

// Handle mouse over menu
document.onmousemove = getMousePosition;
if (ns4) {document.captureEvents(Event.MOUSEMOVE);}

function getMousePosition(e) {
 if (ie) {LmouseX=event.clientX; LmouseY=event.clientY;}
 if (dom) {LmouseX=e.clientX; LmouseY=e.clientY;}
 if (ns4) {LmouseX=e.pageX; LmouseY=e.pageY;}
} // end function getMousePosition

function checkMousePosition(i) {          
 if (ie) {     
  minX=eval(idBundle[i]+'.style.pixelLeft');
  maxX=minX+eval(idBundle[i]+'.scrollWidth');
  minY=eval(idBundle[i]+'.style.pixelTop');
  maxY=minY+eval(idBundle[i]+'.scrollHeight');
 } // end if ie4 exists
 
 if (dom) {
  minX=eval('document.getElementById("'+idBundle[i]+'").style.pixelLeft');
  maxX=minX+eval('document.getElementById("'+idBundle[i]+'").scrollWidth');
  minY=eval('document.getElementById("'+idBundle[i]+'").style.pixelTop');
  maxY=minY+eval('document.getElementById("'+idBundle[i]+'").scrollHeight'); 
 } // end if dom exists

 if (ns4) {     
  minX=eval('document.'+idBundle[i]+'.left');
  maxX=minX+eval('document.'+idBundle[i]+'.clip.width');
  minY=eval('document.'+idBundle[i]+'.top');
  maxY=minY+eval('document.'+idBundle[i]+'.clip.height');
 } // end if ns4 exists

 if (LmouseX>=minX && LmouseX<=maxX && LmouseY>=minY && LmouseY<=maxY) {
  hideIt=0; setTimeout('hideAll()',500);
 } else { hideIt=1; }
 return hideIt;
} // end if

      // -->

