function EmbedTinySlideShow(slideshow, wrapper, fullsize, imgprev, imgnext, imgnav, image, information, previous, next)
{
  var imagefile = [];
  var description = [];
  var width = 300;
  var height = 200;

  imagefile[0] = "/slideshow/images/image09.jpg";
  description[0] = "Rufo and Nuria at the US Naval Postgraduate School in Monterey, California; September 2009";
  imagefile[1] = "/slideshow/images/image07.jpg";
  description[1] = "Nuria at the Ronald Reagan Presidential Library; July 2009";
  imagefile[2] = "/slideshow/images/image01.jpg";
  description[2] = "Rufo and Nuria at the Laredo Yacht Club; August 2005";
  imagefile[3] = "/slideshow/images/image05.jpg";
  description[3] = "Rufo on Telecabarga TV, Spain; November 2005";
  imagefile[4] = "/slideshow/images/image08.jpg";
  description[4] = "Nuria and Rufo flying over British Columbia; August 2009";
  imagefile[5] = "/slideshow/images/image02.jpg";
  description[5] = "Nuria in New York; April 2005 2006";
  imagefile[6] = "/slideshow/images/image04.jpg";
  description[6] = "Rufo in Moss Landing, California";
  StyleTinySlideShow(slideshow, wrapper, fullsize, imgprev, imgnext, imgnav, image, information, width, height);
  document.write('	<ul id="' + slideshow + '">');
  for (var i=0; i<imagefile.length; i++)
  {
    document.write('		<li>');
    document.write('			<span>' + imagefile[i] + '</span>');
    document.write('			<p>' + description[i] + '</p>');
    document.write('		</li>');
  }
  CommonTinySlideShow(slideshow, wrapper, fullsize, imgprev, imgnext, imgnav, image, information, previous, next);
}