<!--
YAHOO.example = function () {
	return {
		init: function () {
			var interval = 7000;
			var slideshow1 = new YAHOO.myowndb.slideshow("polaroid-a-content", {effect:  YAHOO.myowndb.slideshow.effects.fadeOut, interval: interval});
			var slideshow2 = new YAHOO.myowndb.slideshow("polaroid-b-content", {effect:  YAHOO.myowndb.slideshow.effects.fadeOut, interval: interval});
			slideshow1.loop();
			ss2 = function() {
				slideshow2.loop();
				}
			setTimeout("ss2()",1500);

			}
		};
}();

YAHOO.util.Event.onContentReady('polaroid-b-content', YAHOO.example.init);
//-->