d = document, g = 'getElementById', c = 'className';
evts = { onmouseover : over, onmouseout : out, onfocus : over, onblur : out };

function over()	{ this.p[c] = this.pair.p[c] = 'hover'; }
function out()	{ this.p[c] = this.pair.p[c] = ''; }

window.onload = function()
{
	var i, el, links = d[g]('links').getElementsByTagName('a');
	for (i=0; i<links.length; i++)
	{
		el = links[i];
		el.p = el.parentNode.parentNode;
		el.pair = d[g]('strip_' + el.p.id).firstChild;
		el.pair.p = el.pair.parentNode;
		el.pair.pair = el;
		for (j in evts) el[j] = el.pair[j] = evts[j];
	}
}