

// ========================== variables =========================================

//  home page featured clients
var arrFeatures = null;     // array to hold featured client info 
var iFeatures   = 2;        // Adjust the number of clients here
var iCurFeature = 0;        // randomly picked to get info from the client array


// ========================== functions =========================================

// ------------------------ browser fixup routines ------------------------------

//tmtC_NNresizeFix
if (document.layers) 
  {
  origWidth = innerWidth;
  origHeight = innerHeight;
  }


function reDo() 
  {
  if (innerWidth != origWidth || innerHeight != origHeight) location.reload();
  }


if (document.layers) onresize = reDo;

//tmtC_NNresizeFixEnd


/******************************************************************************
  arrFeatures is a multidimensional array to hold the dynamic feature 
    information for populating the home page.
    
    To add another feature, simply copy a set of elements from below, increment the
    number in brackets and populate the values accordingly.
    
    In addition, must increment the number of iFeatures above (Top of this file) - BP
*******************************************************************************/
arrFeatures = new Array();