window.addEvent('domready', function() {
  if (window.getWidth() <= 1070) {
    $('wrapper').tween('margin-left', '-125px');
  }
});

window.addEvent('resize', function() {
  if (window.getWidth() <= 1070) {
    $('wrapper').tween('margin-left', '-125px');
    $$('#footer .footerleft')[0].tween('margin-left','10px');
  } else if (window.getWidth() > 1070) {
    $('wrapper').tween('margin-left', '');
    $$('#footer .footerleft')[0].tween('margin-left','160px');
  }
});

