/**
 * JS
 * @author Darío Ruellan <druellan@ecimtech.com>
 * @copyright ecimTech 2008
 */

function startAnim()
{
	$("#loading").fadeOut("fast", 
		function() 
		{
			$("#ground").fadeIn("fast");
			$("#logo")
				.css("left", 400 )
				.animate(
				{
					opacity: 'toggle',
					left: 60
				}
				, "normal");
			
			$("#horizon")
				.css("top", 200 )
				.animate(
				{
					opacity: 'toggle',
					top: 0
				}
				, "slow",
					function()
					{
						$("#lang_col2")
							.css("left", 550 )
							.animate(
							{
								opacity: 'toggle',
								left: 570
							}, "slow");
					}
				);
		});
}

