// JavaScript Document
// Custom functions by Fabrice Murgia.

function nav(target) {
	if (isNaN(target.charAt(0))) {
		if (target == "forum") window.location.href= 'stories/stories_main.htm';
		if (target == "shout") window.alert('coming soon');
		if (target == "games") window.alert('coming soon');
		if (target == "survey") window.alert('coming soon');
		if (target == "tina") window.alert('coming soon');
		if (target == "send") window.alert('coming soon');
	} else {
		pg = target.charAt(0);
		if (target.charAt(1) == 0) target="";
		rt = new Array ('#','index.htm','play.htm','sex.htm','hiv.htm','pause.htm','friends.htm','crystal.htm','help.htm','body.htm');
		wd = "window.location.href='"+rt[pg];
		target=target+"'";
		eval(wd+target);
	}
}
