in netbeans.apache.org/src/content/images_www/js/companion-projects.js [174:185]
function showCustomTopCol() {
if (typeof jQuery == 'undefined') {
document.write('<script type="text/javascript" src="'+jQueryLocation+'"></script>');
}
if(typeof jQuery != 'undefined') {
$(function(){
$.get(topNavLocation, function(data){
$('table.colapse.full-width.f-page-table-2col tr:first').before(data);
});
});
}
}