// (nur für Internet Explorer)
// hover-effect by buttons

function nColor(obj,fgcol,bgcol,brdr)
{
	if(obj.style && document.all)
	{
	obj.style.color=fgcol; //Forground-Color
	obj.style.backgroundColor=bgcol; //Background-Color
	obj.style.border=brdr; //Border-Attribute
	}
}

