function init_popup_slideshow() {
	$('a#photo_gallery').facebox();
	$('a#photo_stories').facebox();
	$(document).bind('reveal.facebox', function() { 
		$('#facebox .content img')
			.wrap('<div class="slide"></div>')
			.each(function () {
				$(this).after('<p class="caption">'+$(this).attr('alt')+'</p>');
			})
		$('#facebox .footer .controls').remove();
		$('#facebox .footer').prepend('<div class="controls"><a class="previous" href="#"><img title="previous" src="/js/facebox/previous.gif"/></a><a class="next" href="#"><img class="close_image" title="next" src="/js/facebox/next.gif"/></a></div>');
		$('#facebox .content').cycle({
			prev:   '.previous', 
    		next:   '.next', 
    		timeout: 0 
		});
	});
}
function init_inline_slideshows() {
	$('#photo_gallery_tabs>div').each(function(){
		$(this).find('img').wrapAll('<div class="inline_slideshow"></div>');	
	})
	$('.inline_slideshow:has(img:gt(0))').cycle({
   		timeout: 5000
	});
	$('#photo:not(:has(img))').remove();
	$('#photo:has(img)').cycle({
   		timeout: 5000 
	});

}
$(function() {
	init_popup_slideshow();
	init_inline_slideshows();
});