jQuery(document).ready(function($) {
	var _$slideshow = $('#slideshow'),
		 _$buzz = $('#homepage-buzz');
	
	$('img', _$slideshow).each(function() {
		$(this).data('buzz-item', $('#buzz_' + $(this).attr('data-siteid')));
	});
	
	var nextSlide = function() {
		$(':first-child', _$slideshow).each(function() {
			$(this).fadeOut()
				.data('buzz-item').fadeOut();
				
			$(this).next('img').fadeIn()
				.data('buzz-item').fadeIn();
				
			$(this).appendTo(_$slideshow);
		});
		$()
	};
	$('img:gt(0)', _$slideshow).hide();
	$(':first-child', _$slideshow).data('buzz-item').show();
	//console.log( _$slideshow );
	setInterval(nextSlide, 5000);
	
});