 ///////////////////////////

//************************//

//                       *//

// random picture rotator*//



// this code written by	 *//

// [ [clueless.blues] ]	 *//

//      2003.07.24       *//

 //                       *//

  ///////////////////////////





//store the pictures and captions in arrays





//NOTES:





//the array sizes should all be the same





//img array stores pictures





//txt array stores captions



img = new Array(2);





txt = new Array(2);



//___________________________________________________________//



//picture 0 (the first)



	img[0] = "../images/satisfied/sm-sadie.jpg";



	txt[0] = "Sadie";



//___________________________________________________________//



//picture 1 (the second)



	img[1] = "../images/satisfied/sm-audie1.jpg";



	txt[1] = "Audie";



//___________________________________________________________//







//picture 2 (the third)



	img[2] = "../images/satisfied/sm-katze1.jpg";



	txt[2] = "Katze";



//___________________________________________________________//



//picture 3 (the fourth)



	img[3] = "../images/satisfied/sm-katze2.jpg";



	txt[3] = "Katze";





//___________________________________________________________//





//picture 4 (the fifth)



	img[4] = "../images/satisfied/sm-katze4.jpg";



	txt[4] = "Katze";



//___________________________________________________________//



//picture 5 (the sixth)



	img[5] = "../images/satisfied/sm-phoebe.jpg";



	txt[5] = "Phoebe";



//___________________________________________________________//







//picture6 (the seventh)



	img[6] = "../images/satisfied/sm-akasha2.jpg";



	txt[6] = "Akasha";



//___________________________________________________________//







//picture7 (the eighth)



	img[7] = "../images/satisfied/sm-akasha1.jpg";



	txt[7] = "Akasha";



//___________________________________________________________//







//picture8 (the ninth)



	img[8] = "../images/satisfied/sm-bamboo1.jpg";



	txt[8] = "Bamboo";



//___________________________________________________________//







//picture9 (the tenth)



	img[9] = "../images/satisfied/sm-bamboo2.jpg";



	txt[9] = "Bamboo";



//___________________________________________________________//



//picture10 (the eleventh)



	img[10] = "../images/satisfied/sm-bamboo3.jpg";



	txt[10] = "Bamboo";



//___________________________________________________________//



//picture11 (the twelfth)



	img[11] = "../images/satisfied/sm-kitten-max.jpg";



	txt[11] = "Kitten Max";



//___________________________________________________________//



//picture12 (the thirtienth)





	img[12] = "../images/satisfied/sm-max2.jpg";



	txt[12] = "Max";



//___________________________________________________________//



//generate a random number



	number = Math.floor(Math.random() * img.length);



//display the picture



	document.write('<img src=' + img[number] + ' width=100 height=150 class=imgsp>');



	document.write('<br>');



	document.write('<center>' + txt[number] + '</center>');



//finished