// JavaScript

$(document).ready(function(){
    $(window).resize(function(){
        var theCurrentWidth = $(this).width();
        if(theCurrentWidth < 1240 && theCurrentWidth > 1100)
            $('#page, #footer, #headerdate').css('padding-left', (130 - 1240 + theCurrentWidth) + 'px');
        if(theCurrentWidth < 1100)
            $('#page, #footer, #headerdate').css('padding-left', '0px');
        if(theCurrentWidth > 1240)
            $('#page, #footer, #headerdate').css('padding-left', '130px');
    });
});
