User:Amalthea/VectorMenuToTabs.js

if (mw.config.get("skin")=="vector") jQuery(function($) {

$.each((window.VectorMenuToTabs || {ids: ["#p-cactions", "#p-variants"]}).ids, function(i, selector) {

$("div.menu > ul > li > a", $(selector).removeClass("vectorMenu").addClass("vectorTabs")).each(function(i, anchor) {

$(anchor).wrap("");

});

});

});