    <!-- 

      // Copyright TD Consulting Group, All Rights Reserved
    
      var HotButtons = new Array();
      var JavaOK;
      var UsingIE;
      var UsingOpera;
      var MacAOL;
      var UsingGecko;

      JavaOK = navigator.userAgent.indexOf("Mozilla")==0 && navigator.userAgent.substring(8,9) >= 3;
      UsingIE = navigator.userAgent.indexOf("MSIE") > -1;
      UsingOpera = navigator.userAgent.indexOf("Opera") > -1;
        UsingIE = UsingIE || UsingOpera;
        JavaOK = JavaOK || UsingOpera;
      MacAOL = navigator.userAgent.indexOf("Mac") > 0 && navigator.userAgent.indexOf("AOL") > 0;
      UsingGecko = navigator.userAgent.indexOf("Gecko") > -1;

      function HotButton(imgNormal, imgOver) {
        if (JavaOK) {
          this['default']= new Image();
          this['default'].src = imgNormal;
          this['hot'] = new Image();
          this['hot'].src = imgOver;
        }
      }
      
      function RollOver(imgName, layerName) {
        if (JavaOK) {
          if (UsingIE || UsingGecko || layerName.length == 0) {
            document.images[imgName].src = HotButtons[imgName]['hot'].src;
          } else {
            document.layers[layerName].document.images[imgName].src = HotButtons[imgName]['hot'].src;
          }
        }
      }
      
      function RollOut(imgName, layerName) {
        if (JavaOK) {
          if (UsingIE || UsingGecko || layerName.length == 0) {
            document.images[imgName].src = HotButtons[imgName]['default'].src;
          } else {
            document.layers[layerName].document.images[imgName].src = HotButtons[imgName]['default'].src;
          }
        }
      }
      
      function ShowLayer(id) {
        if(JavaOK) {
          if (UsingIE) {
            eval("document.all."+id+".style.visibility='visible'");
          } else {
            if (UsingGecko) {
              document.getElementById(id).style.visibility='visible';
            } else {
              eval("document."+id+".visibility='visible'");
            }
          }
        }
      }
      
      function HideLayer(id) {
        if (JavaOK) {
          if (UsingIE) {
            eval("document.all."+id+".style.visibility='hidden'");
          } else {
            if (UsingGecko) {
              document.getElementById(id).style.visibility='hidden';
            } else {
              eval("document."+id+".visibility='hidden'");
            }
          }
        }
      }

      function ShowLayerAbs(id, imgRef, relPos) {
        var objID;
        if(JavaOK) {
          if (UsingIE) {
            objID = eval("document.all."+imgRef);
            if (relPos == "X") {
              eval("document.all."+id+".style.left="+(getAbsPos(objID, "X") + document.images[imgRef].width));
              eval("document.all."+id+".style.top="+getAbsPos(objID, "Y"));
            } else {
              eval("document.all."+id+".style.left="+getAbsPos(objID, "X"));
              eval("document.all."+id+".style.top="+(getAbsPos(objID, "Y") + document.images[imgRef].height));
            }
            eval("document.all."+id+".style.visibility='visible'");
          } else {
            if (UsingGecko) {
              objID = document.getElementById(imgRef);
              if (relPos == "X") {
                document.getElementById(id).style.left=getAbsPos(objID, "X") + document.images[imgRef].width;
                document.getElementById(id).style.top=getAbsPos(objID, "Y");
              } else {
                document.getElementById(id).style.left=getAbsPos(objID, "X");
                document.getElementById(id).style.top=getAbsPos(objID, "Y") + document.images[imgRef].height;
              }
              document.getElementById(id).style.visibility='visible';
            } else {
              objID = eval("document."+imgRef);
              if (relPos == "X") {
                document.id.style.left=getAbsPos(objID, "X") + document.images[imgRef].width;
                document.id.style.top=getAbsPos(objID, "Y");
              } else {
                document.id.style.left=getAbsPos(objID, "X");
                document.id.style.top=getAbsPos(objID, "Y") + document.images[imgRef].height;
              }
              document.id.style.visibility='visible';
              eval("document."+id+".visibility='visible'");
            }
          }
        }
      }

      function getAbsPos(obj, axis) {

        var iCoord;
        var offsetDirection;

        iCoord = 0;

        if (axis == "X") {
          offsetDirection = "offsetLeft"
        } else {
          offsetDirection = "offsetTop"
        }
        
        while (obj != null) {
          iCoord = iCoord + obj[offsetDirection];
          obj = obj.offsetParent;
        }

        return iCoord

      }
      
      // Main Sub-Topics

      HotButtons['CSSIssues'] =  new HotButton('Customer_Service_Strategy_Home_Sub_Tab.gif', 'Customer_Service_Strategy_Home_Sub_Tab_Selected.gif');
      HotButtons['CSTOutline'] = new HotButton('Corporate_Training_Home_Sub_Tab.gif',        'Corporate_Training_Home_Sub_Tab_Selected.gif');

      HotButtons['LDELC'] = new HotButton('Executive_Leadership_Coaching_Home_Sub_Tab.gif',    'Executive_Leadership_Coaching_Home_Sub_Tab_Selected.gif');
      HotButtons['LDTDC'] = new HotButton('Custom_Leadership_Skill_Training_Home_Sub_Tab.gif', 'Custom_Leadership_Skill_Training_Home_Sub_Tab_Selected.gif');
    
      HotButtons['PSDP'] = new HotButton('Dynamic_Presentation_Skill_Training_Home_Sub_Tab.gif',    'Dynamic_Presentation_Skill_Training_Home_Sub_Tab_Selected.gif');
      HotButtons['PSPC'] = new HotButton('Presentation_Coaching_Home_Sub_Tab.gif',                  'Presentation_Coaching_Home_Sub_Tab_Selected.gif');

      HotButtons['BWDW'] =  new HotButton('Business_Writing_Training_1_Home_Sub_Tab.gif', 'Business_Writing_Training_1_Home_Sub_Tab_Selected.gif');
      HotButtons['BWAW'] =  new HotButton('Business_Writing_Course_2_Home_Sub_Tab.gif',   'Business_Writing_Course_2_Home_Sub_Tab_Selected.gif');
      HotButtons['BWWC'] =  new HotButton('Business_Writing_Coaching_Home_Sub_Tab.gif',   'Business_Writing_Coaching_Home_Sub_Tab_Selected.gif');
      HotButtons['BWCWP'] = new HotButton('Corporate_Writing_Service_Home_Sub_Tab.gif',   'Corporate_Writing_Service_Home_Sub_Tab_Selected.gif');

      // Bottom Sub-Topics

      HotButtons['TDCGTeam'] = new HotButton('TD_Consulting_Group_Consultants_Home_Sub_Tab.gif', 'TD_Consulting_Group_Consultants_Home_Sub_Tab_Selected.gif');

      HotButtons['WhatCsay'] =       new HotButton('What_Clients_Say_About_Us_Home_Sub_Tab.gif', 'What_Clients_Say_About_Us_Home_Sub_Tab_Selected.gif');
      HotButtons['JustForClients'] = new HotButton('Just_For_Clients_Home_Sub_Tab.gif',          'Just_For_Clients_Home_Sub_Tab_Selected.gif');

      HotButtons['Publication'] = new HotButton('TD_Consulting_Group_Training_Publications_Home_Sub_Tab.gif', 'TD_Consulting_Group_Training_Publications_Home_Sub_Tab_Selected.gif');
      HotButtons['SpeakingEng'] = new HotButton('TD_Consulting_Group_Speaking_Engagements_Home_Sub_Tab.gif',  'TD_Consulting_Group_Speaking_Engagements_Home_Sub_Tab_Selected.gif');
      
    -->
