<!-- This script works in: Navigator 3 - 4, Opera 3.1, and Explorer 4
  //  Script:       Image Rollover
  //  Version:      1.0
  //  Last Updated: June 12th 1998
  //  Author:       Scott Brady
  //  Org:          HotSource HTML Help
  //  Email:        webmaster@sbrady.com
  //  Website:      http://www.sbrady.com/hotsource/

if (document.images) 
{
	home_on = new Image();		// Active images
	home_on.src = "http://www.furiouswords.com/images/home_over.png"; 

	home_off = new Image();		// Inactive images
	home_off.src = "http://www.furiouswords.com/images/home.png";  

	home_click = new Image();		// Inactive images
	home_click.src = "http://www.furiouswords.com/images/home.png";  
	
	showcase_on = new Image();		// Active images
	showcase_on.src = "http://www.furiouswords.com/images/showcase_over.png"; 

	showcase_off = new Image();		// Inactive images
	showcase_off.src = "http://www.furiouswords.com/images/showcase.png";  

	showcase_click = new Image();		// Inactive images
	showcase_click.src = "http://www.furiouswords.com/images/showcase.png";  
	
	journal_on = new Image();		// Active images
	journal_on.src = "http://www.furiouswords.com/images/journal_over.png"; 

	journal_off = new Image();		// Inactive images
	journal_off.src = "http://www.furiouswords.com/images/journal.png";  

	journal_click = new Image();		// Inactive images
	journal_click.src = "http://www.furiouswords.com/images/journal.png";
	
	store_on = new Image();		// Active images
	store_on.src = "http://www.furiouswords.com/images/store_over.png"; 

	store_off = new Image();		// Inactive images
	store_off.src = "http://www.furiouswords.com/images/store.png";  

	store_click = new Image();		// Inactive images
	store_click.src = "http://www.furiouswords.com/images/store.png";
	
	links_on = new Image();		// Active images
	links_on.src = "http://www.furiouswords.com/images/links_over.png"; 

	links_off = new Image();		// Inactive images
	links_off.src = "http://www.furiouswords.com/images/links.png";  

	links_click = new Image();		// Inactive images
	links_click.src = "http://www.furiouswords.com/images/links.png";
	
	about_on = new Image();		// Active images
	about_on.src = "http://www.furiouswords.com/images/about_over.png"; 

	about_off = new Image();		// Inactive images
	about_off.src = "http://www.furiouswords.com/images/about.png";  

	about_click = new Image();		// Inactive images
	about_click.src = "http://www.furiouswords.com/images/about.png";

}

function imgOn(imgName) 
{
	if (document.images) 
	{
		document[imgName].src = eval(imgName + "_on.src");
	}
}

function imgOff(imgName) 
{
	if (document.images) 
	{
		document[imgName].src = eval(imgName + "_off.src");
	}
}

function imgClick(imgName) 
{
	if (document.images) 
	{
		document[imgName].src = eval(imgName + "_click.src");
	}
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_findObj(n, d) { //v4.0
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && document.getElementById) x=document.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
// -->