$(window).scroll(function(){
    var $this = $(this);
    $('#footer').css('left', 0 - $this.scrollLeft());
	
});

