// JavaScript Document
function MouseOver(tmp)
{
//this function will be called from the mouseover event of buttons
//tmp should be the element calling this function, ie. this
	tmp.style.background="#910217";
}

function MouseOut(tmp,color)
{
//this function will be called from the mouseout event of buttons to change the color
	tmp.style.background=color;
}

function MouseOver1(tmp)
{
	tmp.style.color="910217";
	tmp.style.background="#FEFFE4"; 
	tmp.style.border="1px solid #910217";
//	tmp.style.border-top="1px solid #910217";
//	tmp.style.border-left="1px solid #910217";
//	tmp.style.border-right="1px solid #910217";
}
function MouseOut1(tmp)
{
	tmp.style.background="910217";
	tmp.style.color="#FEFFE4"; 
}

