function changebg(obj,type)
{
	if(type=="over")
    {
		color = obj.style.backgroundColor;
		obj.style.backgroundColor="#D0FFD0";
	
	}
	else
	{
 		obj.style.backgroundColor=color;
	}
}

