<!-- Engage Cloaking Device

if (document.images){
	book = new Image(177,33);
	book.src = "images/nav/book.gif";
	bookon = new Image(177,33);
	bookon.src = "images/nav/book_on.gif";

	author = new Image(177,33);
	author.src = "images/nav/author.gif";
	authoron = new Image(177,33);
	authoron.src = "images/nav/author_on.gif";

	abuse = new Image(177,33);
	abuse.src = "images/nav/abuse.gif";
	abuseon = new Image(177,33);
	abuseon.src = "images/nav/abuse_on.gif";

	victims = new Image(177,33);
	victims.src = "images/nav/victims.gif";
	victimson = new Image(177,33);
	victimson.src = "images/nav/victims_on.gif";

	abusers = new Image(177,33);
	abusers.src = "images/nav/abusers.gif";
	abuserson = new Image(177,33);
	abuserson.src = "images/nav/abusers_on.gif";

	friends = new Image(177,33);
	friends.src = "images/nav/friends.gif";
	friendson = new Image(177,33);
	friendson.src = "images/nav/friends_on.gif";

	news = new Image(177,33);
	news.src = "images/nav/news.gif";
	newson = new Image(177,33);
	newson.src = "images/nav/news_on.gif";

	links = new Image(177,33);
	links.src = "images/nav/links.gif";
	linkson = new Image(177,33);
	linkson.src = "images/nav/links_on.gif";

	registry = new Image(177,33);
	registry.src = "images/nav/registry.gif";
	registryon = new Image(177,33);
	registryon.src = "images/nav/registry_on.gif";

	home = new Image(177,33);
	home.src = "images/nav/home.gif";
	homeon = new Image(177,33);
	homeon.src = "images/nav/home_on.gif";
}

function imgOn(name,comment,options){
	if((document.images) && (!options)){
		document[name].src = eval(name + "on.src");
	}
}

function imgOff(name,options){
	if((document.images) && (!options)){
		document[name].src = eval(name + ".src");
	}
}

// Disable Cloaking Device -->	