// // Move icons and navigation to top of content area, which should place them right below the page title $(document).ready( function() { var $where = $(document.getElementById('bodyContent') || document.getElementById('article') || document.getElementById('mw_content') || document.getElementById('content')); var $what = $where.find('.topicon').css('display', 'inline'); if ( $what.length ) { $('h1:first').wrapInner('').append( $('').append($what) ); } $what = $where.find('#top-navigation'); if ( $what.length ) { $where.prepend($what); } }); //