<!--
with (this.location) {baseURL = href.substring (0,href.lastIndexOf ("/") + 1)}
var totalGraphics=0;	     
var graphic = new Array(); 
function tocGraphic (width, height, name, statusText, link) {
  
  this.height   = height;
  this.width    = width;  
  this.name     = name; 
  this.link     = link;  
  this.off      = new Image (width, height);
  this.off.src  = imageSubdirectory + name + offSuffix;
  this.offname  = imageSubdirectory + name + offSuffix;
  
  if (link != "") {    
    this.on         = new Image (width, height);
    this.on.src     = imageSubdirectory + name + onSuffix;    
    this.pick       = new Image (width, height);
    this.pick.src   = imageSubdirectory + name + pickSuffix;    
    this.statusText = statusText;
  }
}
function createTocGraphic (width, height, name, statusText, link) {
  
  graphic[totalGraphics] = new tocGraphic(width, height, name, statusText, link); 
  totalGraphics++;
}  
function doClick (num) {
  document.images[graphic[num].name].src = graphic[num].pick.src;

  if (num != picked) {
    document.images[graphic[picked].name].src = graphic[picked].off.src;
  }
  picked = num;
}
function doMouseOver(num) {
  if (num != picked) {    
    document.images[graphic[num].name].src = graphic[num].on.src;
  } 
  if (highlighted != picked && highlighted != num) {
    document.images[graphic[highlighted].name].src = graphic[highlighted].off.src;
  }
  highlighted = num;  
  self.status = graphic[num].statusText;
}

function doMouseOut (num) {  
  if (highlighted != picked) {
    document.images[graphic[highlighted].name].src = graphic[highlighted].off.src;
    self.status = '';
	}
}
function doOnLoad (num) {  
  currentPage =  top.location.href;  
  for (i = 0; i < totalGraphics; i++) {    
    if (currentPage.indexOf(graphic[i].name) > 0) {      
      doClick(i);
      return(1);
    }
  }
  
  if (i >= totalGraphics) {
    doClick(num);
  }
  return(-1);
}

//-------------------------------cbwo
var frameTarget = "content";
var picked=0;        
var highlighted=0;    
imageSubdirectory = "nav/";
offSuffix         = "_off.gif";
onSuffix          = "_on.gif";
pickSuffix        = "_up.gif";


createTocGraphic(150, 26, "home", "Home Page", "shemale_home.html");
createTocGraphic(150, 25, "bio", "An introduction to Natasha.", "shemale_bio.html");
createTocGraphic(150, 26, "join", "Click here to become a member", "shemale_join.html");
createTocGraphic(150, 26, "preview", "Preview of Natasha\'s Shemale Pictures", "shemale_preview1.html");
createTocGraphic(150, 27, "members", "Members Area", "http://www.ticketsclub.com/");
createTocGraphic(150, 24, "links", "Links to shemale sites", "links/index.html");
createTocGraphic(150, 27, "shop", "Natasha\'s Sexshop", "shemale_sexshop.html");
createTocGraphic(150, 25, "contact", "Contact me here:  Site Info, Models, Webmasters", "shemale_contact.html");
createTocGraphic(150, 27, "video", "Videos | CD Roms ", "shemale_videos.html");


//-->