// more.js
// -------
// document.documentElement.className = 'js';

$(document).ready(function() {
	// Fade in the *description* info
	var timer = setTimeout(function() {
		$('#main > p').fadeIn(700, function() {
			var $that = $(this);
			setTimeout(function() {
				$that.next().fadeIn(700);	
			}, 1000);
		});	
	}, 2000);
});
