// Global Variables

defaultBackground="AliceBlue";

function into(oObj)
{
	oObj.style.cursor="pointer"; 
	oObj.style.cursor = "hand";
}

function outof(oObj)
{
	
}	

function rollin(oObj)
{
	oObj.style.cursor="pointer"; 
	oObj.style.cursor = "hand";
	oObj.style.background="LemonChiffon";

}

function rollout(oObj)
{
oObj.style.cursor="default";
oObj.style.background=defaultBackground;

}

function copr()
{

	return("Copyright(C) Emily Clarke 2003 All Rights Reserved\n");

}
