$(document).ready(function () {
	
	// Hide images
	$('ul li img').css({'opacity' : '0'});
	// Create drop-down interaction

	$('ul li img').each(function() {
		$(this).animate({'opacity' : '1'}, 200 * Math.floor(Math.random() * 10) + 4);
	});
	
	$('#clifford').css({'opacity' : '0'});
	$('#martha').css({'opacity' : '0'});
	$('#wordworld').css({'opacity' : '0'});
	setTimeout('showClifford()', 1000);
	setTimeout('showMartha()', 2000);
	setTimeout('showWordWorld()', 3000);
	
});

function showClifford() {
	$('#clifford').animate({'opacity' : '1'}, 500);
}

function showMartha() {
	$('#martha').animate({'opacity' : '1'}, 500);
}

function showWordWorld() {
	$('#wordworld').animate({'opacity' : '1'}, 500);
}