	// grayden functions


// handles the rollover and page redirection of the next step button
		function nextPageRollOn()
	{
		 nextsteptdleft.className='nextsteplefttdon';
		 nextsteptdmid.className='nextstepmidtdon';
		 nextsteptdright.className='nextsteprighttdon';
		 return;
	}
		function nextPageRollOff()
	{
		 nextsteptdleft.className='nextsteplefttdoff';
		 nextsteptdmid.className='nextstepmidtdoff';
		 nextsteptdright.className='nextsteprighttdoff';
		 return;
	}

		function nextPageRedirect()
		{
		 window.location = nextstepredir.href;
		 }
