$(document).ready
(	
	function()
	{
		var imagens = new Array
		(
			"imagens/html.jpg",			
			"imagens/oque_e3.jpg",
			"imagens/oque_e1.gif",
			"imagens/oque_e2.jpg"
		);
		
		onCssImagesLoad 
		( 
		 	imagens,
			function()
			{
				inicia();
			}		
		);
	}
);


function inicia()
{		
	$(".oque_e1").fadeIn(400,				
		function()
		{
			$(".oque_e2").fadeIn(200,				
				function()
				{
					$(".foto").fadeIn(600);
				}	
			);
		}	
	);
}
