QUOTE(wanna @ Sep 11 2009, 09:18)

What line of code did you use and where did you put it? I'm able to edit some of the code but researching and typing new stuff in it is not really something for me right now.
I added this bit of code after the variable declarations:
CODE
//Change title when done loading
window.addEventListener(
'load',
function (e) {
document.title = "*";
}, false);
Just replace the * with whatever you want and that's what the title will be after the script finishes loading. Of course, it could be more sophisticated and be an option that can be enabled/disabled like the logo, but I didn't need to do anything that fancy. Quick-and-dirty, you can stick it in the hideHVLogo function if you want to toggle it with the logo hiding, like this:
CODE
function hideHVLogo() {
// hide HentaiVerse logo (for playing at work/school)
if (_cache.isHideHVLogo) {
var domLogo = document.getElementsByTagName('img')[0];
if (domLogo.src.indexOf("hentaiverse.png") > -1) {
$(domLogo).css("width", "150px").css("height", "150px").attr("src", "http://static.dekandustry.com/bb/img/spacer.gif");
}
//Change title when done loading
window.addEventListener(
'load',
function (e) {
document.title = "*";
}, false);
}
}