﻿
$(Initial );

function Initial() {
	$(window).resize(function(){
		if($(this).height()>655)
			$('#wrap').css('top', ($(this).height() - $('#wrap').height())/2);
		else
			$('#wrap').css('top',0);
	}).trigger('resize');
	
	$('header h1').animate({opacity:1}, 5000, 'easeInOutQuad');
	$('header h2').delay(1000).animate({opacity:1}, 5000, 'easeInOutQuad');
	$('header p').delay(2000).animate({opacity:1}, 5000, 'easeInOutQuad');
};
