/*
=====================================================
NorthWise Services website - Message ticker script

Randomly displays an advertising message on each page
=====================================================
-----------------------------------------------------
       Original script (c) CodeLifter.com 2004
   Modified by Robin North for pFusion:Design 2005
              www.pfusion-design.co.uk
                www.robinnorth.co.uk
------------------------------------------------------
*/

<!--
var Message=new Array() 

Message[0] = "<a href=\"../recruitment/index.html\" title=\"Visit the NW Recruitment website\">Have you seen our new NW Recruitment website? Take a look now &raquo;</a>";
Message[1] = "<a href=\"services.php\" title=\"Find out about the services NWS can offer your company\">Click here to find out about the services NWS can offer your company &raquo;</a>";
Message[2] = "<a href=\"nw_biometrics.php\" title=\"Read about the biometrics services NWS can offer\">NWS can handle all data-related aspects of the clinical trial process - find out more here &raquo;</a>";
Message[3] = "<a href=\"nw_consultancy.php\" title=\"Find out about the consultancy services NWS can offer\">We can provide consultancy, audit and training services - find out more here &raquo;</a>";
Message[4] = "<a href=\"nw_devices.php\" title=\"Find out about NWS\' electronic patient diary devices\">Did you know that NWS offers 6 different electronic patient diary devices? Find out more &raquo;</a>";
Message[5] = "<a href=\"nw_software.php\" title=\"Read about the clinical software suites NWS offers\">NWS offers 2 specialist suites of clinical software - find out more here &raquo;</a>";
Message[6] = "<a href=\"nw_technology.php\" title=\"Read about NWS' innovative technology services\">Find out about our innovative CRF scanning and electronic regulatory submission services &raquo;</a>";
Message[7] = "<a href=\"nw_eservices.php\" title=\"Find out about the Electronic Data Capture and Electronic Case Record Form services we offer\">NWS can help your company embrace the electronic age with its EDC and eCRF services &raquo;</a>";
Message[8] = "<a href=\"nw_eservices.php\" title=\"Find out about the design services provided through our partner, pFusion\:Design\">NWS offers web, multimedia and graphic design - see for yourself &raquo;</a>";
Message[9] = "<a href=\"http://www.pharmawisdom.com\" title=\"Visit the PharmaWisdom&trade\; website\" target=\"_blank\">NWS is a member of PharmaWisdom&trade; - click here to visit their website &raquo;</a>";

var M = Message.length;
var whichMessage=Math.round(Math.random()*(M-1));

function tickerMessage(){document.write(Message[whichMessage]);}
//-->