Quality:

// jQuery // jqPicasaSlideshow // Demos

Curtains transition, shuffled, no title, no link to original, interval at 3000 msec, size 640x360:

Code:

    	$("#mySlideshow").PicasaSlideshow({ 
		    AlbumRSS: 'http://picasaweb.google.com/data/feed/base/user/izemanNL/albumid/5083492410846568017?alt=rss&kind=photo&hl=en_US',
		    shuffle: true, 
		    width: 640, 
		    height: 360, 
		    interval: 3000, 
		    showTitle: false, 
		    linkToOriginal: false, 
		    transition: 'curtains' 
		});
    	

Fade in/out transition, shuffled, title, customlink, interval at 7000 msec, size 640x360:

Code:

    	$("#mySlideshow2").PicasaSlideshow({ 
		    AlbumRSS: 'https://picasaweb.google.com/data/feed/base/user/the.izeman/albumid/5630840832539838177?alt=rss&kind=photo&authkey=Gv1sRgCNewqeuk46z3MQ&hl=en_US',
		    shuffle: true, 
		    width: 640, 
		    height: 360, 
		    interval: 7000, 
		    showTitle: true, 
		    linkToOriginal: false,
		    customlink: '/jQuery-Plugins/jqPicasaSlideshow/details?id={title}', 
		    transition: 'fadeInOut' 
		});