// @include http://www.jobsearch.org/seeker/jobsearch/*
(function(){
//inject our own custom styles to fix font size
var s=document.createElement('style');
s.type='text/css';
s.appendChild(document.createTextNode(
	'div, td, p { font-size: 13px !important; }'
));
var h=document.getElementsByTagName('head')[0];
h.appendChild(s);

//for all the right tables and cells, remove the restricting width
var res = document.evaluate("//body/table[3] | //body/table[3]//table | //body/table[3]//td", 
	document, null,	XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null); 
var i, el;
for (i=0; el=res.snapshotItem(i); i++) {
	el.removeAttribute('width');
}

//remove the cruft
var res = document.evaluate("//body/table[1] | //body/table[2]", 
	document, null,	XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null); 
var i, el;
for (i=0; el=res.snapshotItem(i); i++) {
	document.body.removeChild(el);
}
})();
