$(document).ready(function(){ // This sets the opacity of the thumbs to fade down to 60% when the page loads
	initOtherParticipantStories();
});

function initOtherParticipantStories()
{
	$(".otherparticipantstories-clickable").click(function(){
		$("#otherparticipantstories-container").load($(this).attr("rel"),{},function (tt){
				initOtherParticipantStories();
				initGlobalAnims();
			});
		return false;
	});
}
