$(document).ready(function() {

	$(".piping").hide(); $(".installation").hide(); $(".tech").hide();
	
	$(".piping")
		.animate( { opacity: 'show' }, 1000 )
		.animate( { opacity: 1.0 }, 1000, function() {
			$(".installation")
			.animate( { opacity: 'show' }, 1000 )
			.animate( { opacity: 1.0 }, 1000, function() {
				$(".tech")
					.animate( { opacity: 'show' }, 1000 );
			});
		});
	
});
