$(function(){

$('.words-col').hide();
var paras = $('.words-col'),
	i = 0;
// If using jQuery 1.3 or lower, you need to do $(paras[i++] || []) to avoid an "undefined" error
(function() {
		$(paras[i++]).fadeIn('slow', arguments.callee);
})();
});
