// pre-load the images
jQuery.preloadImages = function()
{
  for(var i = 0; i<arguments.length; i++)
  {
    jQuery("<img>").attr("src", arguments[i]);
  }
}
$.preloadImages("../../images/aa-blobs/blobs-about-us-two-trans.png",
				"../../images/aa-blobs/blobs-about-us-two-trans.png",
				"../../images/aa-blobs/blobs-about-us-three-trans.png",
				"../../images/aa-blobs/blobs-about-us-four-trans.png",
				"../../images/aa-blobs/blobs-about-us-five-trans.png");


$(document).ready(function(){

	$("#text_home").hide();
	$("#text_home").css('opacity',0.0);
	
	$("#white_curve").oneTime("0s", function() {
		$("#white_curve").addClass('curvedbg_start');
		$("#white_curve").removeClass('curvedbg_end');
		$(".curvedbg_start").animate({left:'548px'}, 1500);
	});

	$("#text_home").oneTime("1s", function() {
		$("#text_home").show();
		$("#text_home").animate({opacity:'1.0'}, 2500);
		//if ($.browser.msie){$("#text_home").removeAttr('filter');}
	});
	
});
