




addOnLoadEvent_dyk(rDidYouKnow);


function addOnLoadEvent_dyk(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      oldonload();
      func();
    }
  }
}

var dykText = new Array(7);

dykText[0] = "90% of all firm revenue comes from 20% of clients.";
dykText[1] = "11.3% is the annual work volume decline without gaining new clients.";
dykText[2] = "Client retention improves 28% when a second partner is added to a client relationship.";
dykText[3] = "12% of your annual software spending ends up as shelfware. Do you know who to trust to ensure a return a return on your investment.";
dykText[4] = "Redwood clients include over 40% of the AmLaw 200.";
dykText[5] = "Redwood Professional Services offers firm specific consulting on any topic around the business of law.";
dykText[6] = "Redwood has over 140 clients on 3 continents around the world.";


function rDidYouKnow() {
  var obj;
  //use different techniques to get the object for browser compatibilities
  if (document.all) {
    obj = document.all["didyouknow_text"];
  }
  else if (document.getElementById) {
    obj = document.getElementById("didyouknow_text");
  }
  else if (document.layers) {
    obj = document.layers["didyouknow_text"];
  }

  if (obj) {
    var index = Math.floor(Math.random() * 7);
    obj.innerHTML = dykText[index];
  }
}

