Ho trovato l'inghippo:

<body onLoad="cambiaP()">

codice:
function cambia(o, c)
{
	o.style.background = c;
}
function cambiaP()
{
	tmp = document.getElementsByTagName("p"); 
	for( var x=0; x < tmp.length; x++ ) 
	{ 
		tmp[x].onmouseover = function()
		{ 
			cambia(this, '#B0B0B0');
		};
		tmp[x].onmouseout = function()
		{ 
			cambia(this, '#D4D4D4');
		};
}
E il problema è risolto!
Grazie infinite per l'aiuto!