// JavaScript Document

$(document).ready(function(){
						   
	if (!($.browser.msie)) {	 
		$('.layer-holders').css({'opacity': 0});
		
		$(this).delay(500,function(){
			$("#layer-one").animate({'opacity': 1}, 750);
		});
		
		$(this).delay(700,function(){
			$("#layer-two").animate({'opacity': 1}, 750);
		});
		
		$(this).delay(900,function(){
			$("#layer-three").animate({'opacity': 1}, 750);
		});
	}

	if ($('.layering-text').size()>0) {
		var newHeight = 0;
		$('.layering-text').each(function(){
			if ($(this).height()>newHeight) {
				newHeight = $(this).height();
			};
		})

		$('.layering-text').css('cssText','height:' + newHeight+ 'px !important');
	};

});
