$(document).ready(function(){
	// If a subnav is present, remove the current tab
	// Can't do this with styles because the separating border is styled with first-child
	// and if the first-child is the current tab, there is an extra separating border because the
	// first-child is still there, but hidden.
	if ($('#subnav li.here').length != 0)
		$('#subnav li.here').remove();
});
