YUI().use('anim', function(Y){
	Y.on('load', function(){
		Y.all('.fp').each(function(ele){
			var randDur = Math.random() * 5;
			(new Y.Anim({
				node: ele,
				duration : randDur,
				from : { opacity : 0.0 },
				to   : { opacity : 1.0 }
			})).run();
		});
	});
});

