var clientarray = new Array(
'<img src=\"images/clients/schering.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>Schering Plough Research Institute',
'<img src=\"images/clients/infinity.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>Infinity Pharmaceuticals',
'<img src=\"images/clients/ariad.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>Ariad Pharmaceuticals',
'<img src=\"images/clients/immunogen.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>Immunogen, Inc.',
'<img src=\"images/clients/celldex.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>Celldex Therapeutics, Inc.',
'<img src=\"images/clients/synta.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>Synta Pharmaceuticals',
'<img src=\"images/clients/new_england_biolabs.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>New England Biolabs, Inc.',
'<img src=\"images/clients/ironwood.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>Ironwood Pharmaceuticals',
'<img src=\"images/clients/transform.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>Transform Pharmaceuticals',
'<img src=\"images/clients/epix.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>Epix Pharmaceuticals',
'<img src=\"images/clients/aeris.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>Aeris Therapeutics',
'<img src=\"images/clients/organix.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>Organix, Inc.',
'<img src=\"images/clients/archemix.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>Archemix Corp.',
'<img src=\"images/clients/tandem.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>Tandem Labs',
'<img src=\"images/clients/microbia.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>Microbia Precision Engineering',
'<img src=\"images/clients/instrumentation_lab.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>Instrumentation Laboratories',
'<img src=\"images/clients/whitehead.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>Whitehead Institute',
'<img src=\"images/clients/millennium.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>Millennium',
'<img src=\"images/clients/genzyme.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>Genzyme',
'<img src=\"images/clients/dominion.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>Dominion Diagnostics',
'<img src=\"images/clients/aerodyne.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>Aerodyne Research',
'<img src=\"images/clients/analog_devices.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>Analog Devices',
'<img src=\"images/clients/johnson_mathey.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>Johnson Matthey',
'<img src=\"images/clients/harvard.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>Harvard University',
'<img src=\"images/clients/aventis.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>Aventis',
'<img src=\"images/clients/modular.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>Modular Genetics',
'<img src=\"images/clients/battelle.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>Battelle Labs',
'<img src=\"images/clients/bionostics.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>Bionostics',
'<img src=\"images/clients/netzsch.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>Netzsch',
'<img src=\"images/clients/nmt_medical.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>NMT Medical',
'<img src=\"images/clients/boston_college.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>Boston College',
'<img src=\"images/clients/northeastern.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>Northeastern University',
'<img src=\"images/clients/charles_river.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>Charles River Labs',
'<img src=\"images/clients/toxikon.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>Toxikon',
'<img src=\"images/clients/paratek.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>Paratek Pharmaceuticals',
'<img src=\"images/clients/combinatorx.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>CombinatoRx',
'<img src=\"images/clients/cobham.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>Cobham Defense Electronics Systems',
'<img src=\"images/clients/perkinelmer.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>PerkinElmer Optoelectronics',
'<img src=\"images/clients/reproductive_science_center.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>Reproductive Science Center',
'<img src=\"images/clients/draper.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>Draper Laboratories',
'<img src=\"images/clients/emd.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>EMD Lexigen Research',
'<img src=\"images/clients/setra.gif\" width=\"120\" height=\"60\" alt=\"\" border=\"0\"><br>Setra Systems'
);

function rotateclients() {
  if(document.getElementById('clients')) {
    thisclient = clientarray.shift();
    clientarray.push(thisclient);
    document.getElementById('clients').innerHTML = thisclient;
    t=setTimeout("rotateclients()",5000);
  }
}

