<!-- // First, declare all the variables and message strings
  	var r = 0;
	
	function swapover(n)  // swaps the three images on each mouseover
	{
	if (document.images)
	    {
	    document.images['image'+n].src = eval("c" + n + ".src");
	    document.images['midt'].src = eval("midt" + n + ".src");
	    }
	}
	
	
	function swapout(n)  // swaps the three images back on each mouseout
	{
	if (document.images)
	    {
	    document.images['image'+n].src = eval("b" + n + ".src");
	    document.images['midt'].src = midt0.src;
	    }
	}


	function nothing()  // can be called when you want nothing to happen - like dummy URLs
	{
	}
	
	
	// -->