<!--

client = new Array();

client[0] = 'Top shelf';
client[1] = 'Appliance Testing 3760 Ltd';
client[2] = 'Tinakori Art Gallery';
client[3] = 'BCITO';
client[4] = 'Whitireia Community Polytechnic';
client[5] = 'Austral Pacific Ltd';
client[6] = 'Department of Building and Housing';
client[7] = 'Easyswim';
client[8] = 'Kea Travel';
client[9] = 'L&M Energy Limited';
client[10] = 'Masterlink';
client[11] = 'Page Blackie Gallery';
client[12] = 'Recon Professional Services';
client[13] = 'Samsung';
client[14] = 'Splash Gordon';
client[15] = 'Trimax';
client[16] = 'Wests Rugby Club';
client[17] = 'AF Logistics';
client[18] = 'Identity';
client[19] = 'Teamfactors';
client[20] = 'Export Meat Warehouse';
client[100] = 'The stirrer';
client[200] = 'The shaker';

function showNewClient(whichclient) {
  /* trigger function on desired event */
  /* whichclient will be a number matching the array item */

  var myEL = document.getElementById('rolloverText');

  myEL.innerHTML = (client[whichclient]);
} 
function showNoClient() {
 /* empty the text div */
  var myEL = document.getElementById('rolloverText');

myEL.innerHTML = ('');
}

//-->
