YAHOO.util.Event.onDOMReady(function() {
	if( IRIS.clients.pcyc.noPhotoFrame ) {
		return;
	}
	var baseUri = '/files/images/photo-frame/',
		uri = '/util/image-details.php?uri=' + baseUri + '&width=197&height=194&return=fileName',
		slideShow;
	YAHOO.util.Connect.asyncRequest('GET', uri, {
		success: function( response ) {
			var images = IRIS.util.XhrUtils.parseJSON(response.responseText).data,
				img = document.getElementById('pageImage');
			if( images.length && img ) {
				img.parentNode.style.display = 'block';
				YAHOO.util.Dom.removeClass(img.parentNode, 'noImage');
				slideShow = new IRIS.widget.SlideShow(img, {
					baseUri: baseUri,
					images: images,
					delay: 5000,
					random: true
				});
			}
		}
	});
});