
<!--
function navOver(theImage)
                  {
                        theImage.style.backgroundPosition = "0px -32px";
                  }
                  
function navOut(theImage)
                  {
                        theImage.style.backgroundPosition = "0px 0px";
                  }

function btnSignUpOver(theImage)
				  {
                        theImage.style.backgroundPosition = "0px -66px";
                  }
                  
function btnSignUpOut(theImage)
                  {
                        theImage.style.backgroundPosition = "0px 0px";
				  }
				  
function btnOver(theImage)
				{
					theImage.src = "images/" + theImage.name + "_r.gif";
				}
			
function btnOut(theImage)
				{
					theImage.src = "images/" + theImage.name + ".gif";
				}
/*
function deerPantsOver(theImage)
				{
					theImage.src = "images/" + theImage.name + "r.gif";					
				}
			
function deerPantsOut(theImage)
				{
					theImage.src = "images/" + theImage.name + ".gif";
				}
*/

var links;

function Over(currobj,targetLink) {
	links = document.getElementsByName(targetLink);	
	links[0].style.backgroundPosition = "0px -32px";	
	currobj.className+=" over";
}				
function Out(currobj,targetLink) {
	links[0].style.backgroundPosition = "0px 0px";
	currobj.className=currobj.className.replace("over", "");
}
				
//-->
