$(document).ready(function(){
    
    // smooth scroll nav
    $('nav ul').onePageNav();
    $('*:not(nav) a[href*="#"]').click(function(){
        $('nav a[href="' + $(this).attr('href') + '"]').click();
        return false;
    });
        
    $(window).resize(function(){
        $('header').css('left', $(this).width() / 2 - 520 + 'px');
    });
    
    $(window).resize();
    
});
