// JavaScript Document

$(document).ready(function() {
	$("#intro_img").fadeIn(1400, function(){
		$("#img_row").fadeIn(1200, function(){
			$("#nav_box").animate({width:"310px"},{duration: 900,complete:function(){
						$("#ticket_box").animate({height:"85px"},{duration: 1200, complete:function(){
								$("#site_enter_lnk").fadeIn(800);
							}
						});
					}
				});
		});
	});

});						   