// Array.shuffle( deep ) - Randomly interchange elements
Array.prototype.fgshuffle = function( b ) {
 var i = this.length, j, t;
 while( i ) {
  j = Math.floor( ( i-- ) * Math.random() );
  t = b && typeof this[i].shuffle!=='undefined' ? this[i].shuffle() : this[i];
  this[i] = this[j];
  this[j] = t;
 }
 return this;
};

function RandomFrontImages()
{
  var base = arguments[0];

  var picts = [
		'/~curt/Models/Current/Shrike40/Small/1241387631872.jpg',
		'/~curt/Models/Current/Shrike40/Small/1241387651941.jpg',
		'/~curt/Models/Current/SeaWindEP/Small/1238869359705.jpg',
		'/~curt/Models/Current/SeaWindEP/Small/1238869642301.jpg',
 	        '/~curt/Models/Current/SeaWindEP/Small/IMG_2937.JPG',
 	        '/~curt/Models/Current/SeaWindEP/Small/IMG_2937.JPG',
		'/~curt/Models/Current/BigStick40/Small/IMG_1118.jpg',
		'/~curt/Models/Retired/AceHigh/Small/IMG_1337.JPG',
		'/~curt/Models/Retired/SS40-MKI-ARF/Small/IMG_0250.JPG',
		'/~curt/Models/Retired/SS40-MKI-ARF/Small/SS40-4.jpg',
		'/~curt/Models/Retired/SS40-MKI-ARF/Small/SS40-2.jpg',
		'/~curt/Models/Retired/FairchildF-24/Small/curt7.jpg',
		'/~curt/Models/Retired/FairchildF-24/Small/f-24-2.jpg',
		'/~curt/Models/Retired/Aerobird/Small/IMG_0486.JPG',
		'/~curt/Models/Retired/TigerBipe/Small/IMG_1358.JPG',
		'/~curt/Models/Current/FourStar40/Small/img_2783.jpg',
		'/~curt/UAS/Rascal110_2/Small/img_3197.jpg',
		'/~curt/UAS/Rascal110_2/Small/img_3781.jpg',
		'/~curt/UAS/Rascal110_2/Small/XE3C2071.jpg',
		'/~curt/UAS/Rascal110_2/Small/IMG_4081.JPG',
		'/~curt/UAS/Rascal110_2/Small/IMG_4077.JPG',
		'/~curt/UAS/Rascal110_2/Small/IMG_4073.JPG',
		'/~curt/UAS/Rascal110_1/Instrumentation/Small/P1010315.JPG',
		'/~curt/UAS/Rascal110_1/Rebuild/Small/img_2932.jpg',
		'/~curt/UAS/Rascal110_1/Flight/Small/img_2552.jpg',
		'/~curt/UAS/Rascal110_1/Flight/Small/img_2658.jpg',
		'/~curt/UAS/Rascal110_1/Flight/Small/img_2660.jpg',
		'/~curt/Models/Current/MidwestCitabria/Small/DSCN0053.jpg',
                '/~curt/Models/Current/MidwestCitabria/Small/IMG_1020.jpg',
                '/~curt/Models/Current/MidwestCitabria/Small/IMG_1033.jpg',
                '/~curt/Models/Current/MidwestCitabria/Small/IMG_1047.jpg',
                '/~curt/Models/Current/MidwestCitabria/Small/IMG_1048.jpg',
                '/~curt/Models/Current/MidwestCitabria/Small/img_2569.jpg',
                '/~curt/Models/Current/MidwestCitabria/Small/IMG_2045.jpg',
		'/~curt/Models/Current/UltraSport40/Small/img_3795.jpg',
		'/~curt/Models/Current/UltraSport40/Flying/Small/IMG_4697.JPG',
		'/~curt/Models/Current/UltraSport40/Flying/Small/img_3796.jpg',
		'/~curt/Models/Current/EGN-1/Small/img_2649.jpg',
		'/~curt/Models/Current/EGN-1/Flying/Small/IMG_0133.jpg',
		'/~curt/Models/Current/EGN-1/Flying/Small/img_2652.jpg',
		'/~curt/Models/Current/RascalC/Small/IMG_4714.JPG',
		'/~curt/Models/Current/Hangar9Cub/Small/img_0760.jpg',
		'/~curt/Models/Current/Mariner40/Water/Small/img_0783.jpg',
		'/~curt/Models/Current/Mariner40/Water/Small/img_0789c.jpg',
		'/~curt/Models/Current/Mariner40/Water/Small/img_0793.jpg',
		'/~curt/Models/Current/Mariner40/Water/Small/IMG_1986.JPG',
		'/~curt/Models/Current/Mariner40/Water/Small/IMG_1614.JPG',
		'/~curt/Models/Current/Mariner40/Snow/Small/img_3211.jpg',
		'/~curt/UAS/SeniorTelemaster/Small/IMG_4445.JPG',
		'/~curt/UAS/SeniorTelemaster/Small/IMG_4449.JPG',
		'/~curt/Models/Retired/SweetStik/Small/us2.jpg'
              ];

  picts.fgshuffle();

  document.write("<IMG SRC=\"" + picts[0] + "\" ALT=\"" + picts[0] + "\"> ");
  document.write("<IMG SRC=\"" + picts[1] + "\" ALT=\"" + picts[0] + "\"> ");
  document.write("<IMG SRC=\"" + picts[2] + "\" ALT=\"" + picts[0] + "\">");
}
