$(document).ready(function(){

    /*$("#content").css("margin-top", ($(window).height()*0.22)+"px");

    $(window).resize(function(){
        $("#content").css("margin-top", ($(window).height()*0.22)+"px");
    });*/


    $("#email").focus();

    if($('#email-submitted').length){
        if ($('#email-submitted').hasClass("valid")){
            setTimeout ( function(){
                $('#email-submitted').fadeOut(240);
            }, 1300 );
        } else {
            setTimeout ( function(){
                $('#email-submitted').fadeOut(240);
            }, 4400 );
        }
    }    
});


