$(document).ready(function(){
	$("#wrapper").fadeIn(3000);
	$("#c").slideDown(3000);
	$("#h").slideDown(4000);
	$("#a").slideDown(5000);
	$("#z").slideDown(6000);
	$("#text").fadeIn(9000);

  // choice is a integer 0,1,2,3
  var choice = Math.floor(Math.random() * 4);
  var colours = ['pink', 'blue', 'green', 'yellow'];
  
  // console.log(choice);
  // console.log(colours[choice]);
  $('body').addClass(colours[choice]);
});