$(document).ready(function(){

	//fade in illustration
	$('#content img').fadeTo(3500,1);
		
	//then fade in header and footer
	$('#header').delay(2000).fadeTo(1000,1);
	$('#footer').delay(2000).fadeTo(1000,1);

});

