// v0.01
// ==UserScript==
// @description   Push the twitter sidebar out of the way
// @include	   https://twitter.com/*
// @include	   http://twitter.com/*
// ==/UserScript==
document.getElementById('status_update_box').style.width='400px';
document.getElementById('container').style.width='564px';
document.getElementById('content').style.width='auto';
document.getElementById('content').style.padding='0';
$(function () { 
  $('#side_base').css('position', 'fixed').css('top','0').css('right','0').css('right','-150px');
  $('#side_base').hover(function () {
    $('#side_base').addClass('open').css('right', '0');
    }, function() {
    $('#side_base').removeClass('open').css('right', '-150px');
    }
  );
});

