// Script Author - Wildman Tim ( http://www.wildmantim.com )
// this script is Public Domain

var sid="mitnamdliw_wildmantim";

//--- Array for Netscape 2.0x and 3.0x
function MakeArray(n) {                 
   this.length = n;
   for (var i = 1; i <= n; i++) { 
     this[i] = 0 }
     return this
 }

//this produces a randomly generated HTML code that is inserted on your page 
function RandomNumber(sid) {
  var today = new Date();
  var num= Math.abs(Math.sin(today.getTime()/1000));
  return num;  
}
function TipWizard() {

//tailor to the browser capabilities
var appname= navigator.appName;             
var appversion=parseInt(navigator.appVersion);

         if (appname == "Netscape" && appversion >= 3){
 //( Netscape 3.0 or higher)
	var testNum = Math.random(); }
	else {
//all others use this call       
	var testNum = RandomNumber(sid);}
	
//remember to change this according to the 
//number of tips in the array below
	var NoOfTips=4;

//-- tips array --

var x=0;
var y=0;
var messages = new MakeArray(NoOfTips);
messages[0]=NoOfTips;
//load the array with messages
messages[1]="&quot;I have relied on Thunderbird Automotive for many years to service my car because they stand for Trust, Integrity, and Excellence.&quot;<p align='right'>Judy Murphy<br>Sun City, Arizona</p>";
messages[2]="&quot;I like the way they explain to one exactly what is the matter with your car. They guarantee the work and back it up. Very seldom does one have to return because a job wasn't done right in the first place. Rated: Excellent.&quot;<p align='right'>Rose Quinlin<br>Phoenix, Arizona</p>"; 
messages[3]="&quot;I've been a customer for 11 years and never had a problem. They're honest, prompt, reasonably priced and repair what needs to be repaired. Keep up the good work, guys.&quot;<p align='right'>Gio Nanni<br>Phoenix, Arizona</p>";
messages[4]="&quot;Thunderbird Automotive has serviced my business vehicles and personal vehicles for over 10 years. I can honestly say I have never been disappointed in their work or their service during all these years. Their commitment to quality is evident in every facet of the work they perform.&quot;<p align='right'>Gail Chase, CEO<br>Roskap/Sun Health Residential Services, LLP<br>Sun City West, Arizona</p>";
messages[5]="&quot;I have had Thunderbird Automotive service my vehicles for the last 13 years (at one time I had five cars). I have stayed with them for their excellent service. They go the extra mile in serving you. I highly recommend Thunderbird to my friends and clients and have for all these years. Thank you, Gary, Tom, Paul, Lee and all the other technicians over the years.&quot;<p align='right'>Jay R. Cantu<br>Phoenix, Arizona</p>";
messages[6]="&quot;Thunderbird Auto has taken care of our automotive repair needs for past six years and eight vehicles. They are always informative, professional and honest. We like to think of the guys as our friends as well as our mechanic specialists.&quot;<p align='right'>Patricia Campbell<br>Phoenix, Arizona</p>";
messages[7]="&quot;I have been a loyal customer of Thunderbird Automotive since 1982. Tom Fletcher and Gary Robison have a great staff and are very reliable. Thunderbird takes excellent care of both of my domestic and foreign vehicles. They are a trustworthy business and their prices are very fair. Finally, their ability to take me to work and return my vehicle on the same day saves me time and money.&quot;<p align='right'>Stephen A. Folson, D.D.S, M.S.<br>Peoria, Arizona</p>";
messages[8]="&quot;We've been taking our vehicles to Thunderbird Automotive since 1987. The service has always been great and we'd recommend them to anyone who is looking fro an honest repair facility.&quot;<p align='right'>Jeff and Susan Gahan<br>Phoenix, Arizona</p>";

//calculate the tip to show
y=1/NoOfTips;
for(x= 1; x <= NoOfTips; x++) {
	while(sid!="mitnamdliw_wildmantim"){};
	if ( testNum > ( NoOfTips  - x ) * y ) {
		document.write(messages[x]);
		break; }
}	}
        TipWizard();