Team:SCUT China/javascript/removeBullshitClasses js

$(document).ready(function() {

 // Script written by Chiel van Amstel to minimize the impact of the iGEM stylesheet. Provided that the author is mentioned, this script is free to be used by others.
 $('div#content').removeAttr('id').attr('id', 'body');
 $('a#top').remove();
 $('div#top_title').remove();
 $('div#HQ_page').removeAttr('id');
 $('div.mw-body').removeAttr('class');
 $('div#mw-content-text').removeAttr('id');
 $('div#bodyContent').removeAttr('id');
 $('div.mw-content-ltr>p').addClass('meta');
 $('div.mw-content-ltr').removeAttr('class').attr('id', 'Global');

})