﻿function topTitle(){
	$("#index h1").animate({
		marginLeft:"0"},{queue:false,duration:1000,easing:"linear"})
		.animate({
		opacity:1},{queue:false,duration:2000,easing:"linear"});
}

function topSubTitle(){
	$("#index dl").delay(1000).fadeIn(1000);
	$("h2").delay(1000).fadeIn(1000);
};

$(function (){
	$("#anXleft").delay(100).slideDown("normal", function(){
		$("#anXright").slideDown("normal",
		function(){
		topTitle();
		topSubTitle();
		})
	});
});
