$(document).ready(function() {

	$('.letter span:odd').css('margin-top','400px');
	
	$('.letter span').animate({
		marginTop: '200px'
	
	},1500,function () {
		
		$('#contact').fadeIn('slow');
	
	});
	

});
