function updateRokBoxStyle(element)
{
	var nodes = element.childNodes;
	var i = 0;
	for (i = 0; i < nodes.length; i++)
	{
		node = nodes[i];
		if (node.attributes)
		{
			for (j = 0; j < node.attributes.length; j++)
			{
				attribute = node.attributes[j];
				if (node.nodeName.toLowerCase() == "a" && 
					attribute.nodeName.toLowerCase() == "rel" && 
					attribute.nodeValue.toLowerCase().indexOf('rokbox') >= 0)
				{
					node.style.marginRight = '-3px';
				}					
			}
		}
		updateRokBoxStyle(node);
	}
}


