You can easily do this, though the change would affect every switch content instance on your site. Inside switchcontent.js, find the line:
Code:
header.firstChild.innerHTML=status
and change that to:
Code:
header.lastChild.innerHTML=status
And also:
Code:
this.headers[i].innerHTML=this.headers[i].innerHTML+' <span class="status"></span>' //Add a span element to original HTML to store indicator
and change that to:
Code:
this.headers[i].innerHTML='<span class="status"></span> '+this.headers[i].innerHTML //Add a span element to original HTML to store indicator
You may want to look at using Switch Content script II instead, which lets you place the toggling icon anywhere you like on your page.
Bookmarks