function over(obj)
{
	if(obj.className=='button')
		obj.style.background='#006699';
	else if(obj.className=='button2')
		obj.style.background='#666699';
}

function out(obj)
{
	obj.style.background='#003366';
}