/* Author:

*/
$(document).ready(function($) {

    // setTimeout(function(){
    //     var h = ($("#content").height()-$('#main').height())*.5;
    //     $('#main').css({
    //         marginTop:h+'px'
    //     });
    // 
    //     }, 1000) 
    
    $(window).on('resize', function(){
        $('#wrap').css({
            marginTop:($(window).height() - $('#wrap').height())*.5
        });        
    })
    
    
    $('#passvue').passevue();
});

