$('document').ready(function(){//Get the text from the title above and copies it into the sibling div below	$('.ani-title').each(function(i){		//$(this).addClass('scrollTitle_' + i);		$(this).siblings().text($(this).text());	});	//Cycle plugin to make the title animate		$('.scrollingTitle').cycle({		fx: 'scrollDown',		speed: 500	});});
