// http://www.google.com/uds/solutions/slideshow/reference.html#_fullcontrolpanel

function LoadSlideShow() {
    var feed  = "http://api.flickr.com/services/feeds/photos_public.gne?id=80453225@N00&lang=en-us&format=rss_200";
    var options = {
		displayTime:2000, 
		transistionTime:600, 
		scaleImages:true,
		linkTarget : google.feeds.LINK_TARGET_BLANK,
		thumbnailSize : GFslideShow.THUMBNAILS_SMALL,
		maintainAspectRatio : false,
		fullControlPanel : true,
		fullControlPanelSmallIcons : true
		};
	
	
	
    var ss = new GFslideShow(feed, "slideShow", options);
	
	ss.goForward();  // Moves to the next photo
  	ss.goBackward(); // Moves to the previous photo.
 	ss.gotoIndex(0); // Moves to the first photo.
  	ss.pause(false); // Pause without displaying the pause image.
  	ss.resume();     // Resume play.
  }
  /**
   * Use google.load() to load the AJAX Feeds API
   * Use google.setOnLoadCallback() to call LoadSlideShow once the page loads
   */
  google.load("feeds", "1");
  google.setOnLoadCallback(LoadSlideShow);
  
  
  //var options = {
//    numResults : 16,
//	scaleImages : true,
//    maintainAspectRatio : false,
//	displayTime : 5000,
//    transitionTime : 500,
//	linkTarget : google.feeds.LINK_TARGET_BLANK,
//	thumbnailSize : GFslideShow.THUMBNAILS_MEDIUM,
//	fullControlPanel : true,
//    fullControlPanelSmallIcons : true,
//    pauseOnHover : false
//  }
//  new GFslideShow(feed, "slideShow", options);