Bueno, no te costará mucho generar un array que contenga los ids de cada enlace que quieras afectar con esta función:
Código PHP:
var enlaces =['idenlace1','idenlace2','idenlace3'];
Luego podés afectarlos de esta manera:
Código PHP:
if (!Array.prototype.map)
{
Array.prototype.map = function(fun /*, thisp*/)
{
var len = this.length >>> 0;
if (typeof fun != "function")
throw new TypeError();
var res = new Array(len);
var thisp = arguments[1];
for (var i = 0; i < len; i++)
{
if (i in this)
res[i] = fun.call(thisp, this[i], i, this);
}
return res;
};
}
var enlaces =['idenlace1','idenlace2','idenlace3'];
onload=function(){enlaces.map(prev);}