<!-- Begin
// slideshow script
    function load() {
		var webAlbum = "5329114917560670881";
	
      var samples = "http://picasaweb.google.com/data/feed/base/user/italyhotline/albumid/" + webAlbum + "?kind=photo&alt=rss&hl=en_US";
      var options = {
	    numResults : 23,
        displayTime: 2000,
        transitionTime: 1000,
    	scaleImages : true,
        linkTarget : google.feeds.LINK_TARGET_BLANK,
        transitionCallback : myTransitionHandler,
		feedLoadCallback : myFeedLoadHandler
      };
		new GFslideShow(samples, "slideshow", options);
    }
    google.load("feeds", "1");
    google.setOnLoadCallback(load);

	// initialize to max number of photos
	var seconds = 66;
	var targetURL="http://www.italyhotline.com/tours_a_and_d.php";

	
   //Place the title of the entry under the image
  function myTransitionHandler(entry, transitionTime) {

	if (seconds == 0)	{
		window.location=targetURL
	}
	else	{
		document.redirect.redirect2.value=seconds;
		seconds = seconds - 3;
	}
  }
  
  function myFeedLoadHandler(result) {

  }
  
//  End -->