select / IMDb movie reorganized

// ==UserScript==
// @name         IMDb movie reorganized
// @version      0.2
// @description  Remove the sidebar and move the details section to the top right after the overview
// @author       select
// @match        http://www.imdb.com/title/tt*
// @require      https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js
// @grant        none
// ==/UserScript==

$('#titleDetails').detach().insertAfter('#title-overview-widget');
$('#consumer_main_nav, #maindetails_sidebar_bottom, #overview-bottom').hide();
// $('.article').width(500);
$('#root, #navbar').width(687);
$('#nb_extra').hide();
$('#navbar div.quicksearch_dropdown_wrapper').css({right: 11});