$(document).ready(function(){
    $('#contentLeft, #contentRight, p.homeText, .enter').hide();
    $('#contentLeft, #contentRight').delay(1200).fadeIn(1500, function(){
    	$('p.homeText, .enter').delay(1500).fadeIn(1500);
	});
    $('#landingWrapper, .enter').click(function(){
        var href = $('.enter').attr('href');
        $('#landingWrapper').fadeOut(1500, function(){
            window.location = href;
        });
    return false;
    });
});
