/* Author: 

*/




$(document).ready(function(){
	$('#iam').animate({
		opacity: 'show', 
		marginTop: ($(window).height()/2 - $('#iam').height())
	}, 5000, "swing", function(){ 
		$('#services').animate({
			opacity: 'show'
		}, 3000, "linear", function(){
		    $('#contacts').animate({
                opacity: 'show'
            }, 3000, "linear");
		});
	});
});



















