function rndq() {
var howMany = 8;  // max number of items listed below
var test = new Array(howMany+1);

test[0]='&quot;Within the first visit from Pawsitive Pooches I could see a change in Snickers demeanor.&quot;<BR><i><b>Lauren, North Raleigh</i></b>';

test[1]='&quot;Pawsitive Pooches is simply the best!! The improvements in our Border Collie are phenomenal, our lives have been forever changed.&quot;<BR><i><b>Retha, North Raleigh</i></b>';

test[2]='&quot;We know good behavior is learned and we are incredibly grateful to friends for recommending Pawsitive Pooches. &quot;<BR><i><b>John and Donna, North Raleigh</i></b>';

test[3]='&quot;We could not more highly recommend Pawsitive Pooches.&quot;<BR><i><b>Melinda & David, Wake Forest</i></b>';

test[4]='&quot;At last we have no more 5AM wake up demands from our 11 year old toy poodle.&quot;<BR><i><b>Lynne, Newtown PA</i></b>';

test[5]='&quot;Based on my experiences, I would highly recommend Pawsitive Pooches to anyone looking for help with their 4 legged canine friends, or even their owners.&quot;<BR><i><b>Claudia, Cary NC</i></b>';

test[6]='&quot;Jarrod and Tric are also generous about sharing information about dog training and behaviour, which has helped me greatly.&quot;<BR><i><b>Carol, Raleigh NC</i></b>';

test[7]='&quot;Pawsitive Pooches has made a tremendous impact on my dog Cassius\' behavior as well as our relationship as owner and pet.&quot;<BR><i><b>Jodie, Raleigh NC </i></b>';



function rndnumber(){
var randscript = -1;
while (randscript < 0 || randscript > (howMany-1) || isNaN(randscript)){
	randscript = parseInt(Math.random()*(howMany+1));
}
return randscript;
}

quo = rndnumber();
quox = test[quo];
document.write(quox);

}

function footer() {

document.write('        <div style="float:right; text-align:right; padding-right:10px">');
document.write('        <table><tr><td align="right" style="padding-top:10px; padding-right:10px">We are proud members of<BR>the following organizations:</td>');
document.write('    	<td><a href="http://www.petcareservices.org/" target="_blank"><img border="0" src="images/petcareservice.gif" width="55" height="55" ');
document.write('	style="margin-right:10px" alt="Pet Care Service Association"></a></td>');
document.write('        <td><a href="http://www.apdt.com" target="_blank"><img border="0" src="images/logo-apdt.gif" width="95" height="55" alt="Member of Association of Pet Dog Trainers"></a></td>');
document.write('	</tr></table></div>');
document.write('        <div style="float:left; padding-left:10px">');
document.write('        <b style="font-size:13px">Pawsitive Pooches</b><br>');
document.write('        3650 Rogers Road # 226, Wake Forest NC 27587 <br>');
document.write('        919-325-0174 919-610-6651 <br>');
document.write('        <a href="mailto:Pawsitivepooches&#64;gmail.com">Pawsitivepooches&#64;gmail.com</a><BR>        </div>     ');

}


