var adtimer 
var adcounter 
var textads = new Array() 

textads[0]='<a href=\"testimonials.html\">Thank you for your help throughout a rather grueling hiring process.  It is most appreciated.<br>~ Kathy K.</a>' 

textads[1]='<a href=\"testimonials.html\">HCP helped me build confidence in myself and search out opportunities not open to those without the tools to find the right job.<br>~ Adam R.</a>'

textads[2]='<a href=\"testimonials.html\">The benefits you afford professionals in exploring and securing career opportunities are far greater that the dollars invested.<br>~ Christopher B.</a>'

textads[3]='<a href=\"testimonials.html\">The area I found most helpful in my career search was building my resume and prepping for interviews.<br>~ Michael S.</a>'

textads[4]='<a href=\"testimonials.html\">I have had several comments on the look of my resume and accompanying materials.  I have successfully negotiated an extra $1000 in salary and extra vacation time thanks to your coaching.<br>- George V.</a>'

textads[5]='<a href=\"testimonials.html\">HCP helped transform my career transition into an adventure rather than allowing it to become a nightmare.<br>~ Steve M.</a>'

textads[6]='<a href=\"testimonials.html\">HCP helped me develop a job transition plan that made sense ~ one I could believe in ~ and gave me the confidence to know I would be successful.<br>~ Steve M.</a>'

textads[7]='<a href=\"testimonials.html\">Working with all of you was a big help in sorting out what really mattered to me as I searched for a new job.<br>~ Don A.</a>'

textads[8]='<a href=\"testimonials.html\">I know the marketing tools HCP created for me conveyed professionalism and revealed my skills well.<br>~ Carol M.</a>'

var adcounter=Math.floor(Math.random()*(textads.length)) 

function changeRandomTextAd(){ 
   var oldAD = document.getElementById('randomtextadsdiv').innerHTML; 
   var newAD = textads[adcounter]; 
   document.getElementById('randomtextadsdiv').innerHTML = newAD; 

if (adcounter < ((textads.length)-1)) 
{ 
adcounter++ 
} 
else 
{ 
adcounter=0 
} 

adtimer=setTimeout("changeRandomTextAd()",9000) 
} 
