$(document).ready(function() {
	
	
// Configuration for Cluster Participants area
	$('#cluster-participants #listing').cycle({
		timeout: 6500,
		random: true,
		prev: '#cluster-participants ul li.prev a',
		next: '#cluster-participants ul li.next a',
		pause: true
	});
	
	/* Position slide elements outside viewable area */
	$('#cluster-participants div.content').css('top','-30px');
	$('#cluster-participants ul.controls').css('bottom','-45px');	
	
	/* Animate the position on hover */
	$('#cluster-participants').hover(function(){
		$('ul.controls').animate({ bottom: '0' }, 'fast');
		$('.content').animate({ top: '0' }, 'fast');
		}, function(){
		$('ul.controls').animate({ bottom: '-45px' }, 'fast');
		$('.content').animate({ top: '-30px' }, 'fast');
	});
	

});
