var a9_over = new Array();
var a9_out = new Array();

function A9over(i)
{
	if ((i.type == "image") || (i.type == null))
	{
		if (a9_over[i.src] == null)
		{
			var b = i.src.indexOf( '.', i.src.lastIndexOf('/') );
			a9_over[i.src] = i.src.substr( 0, b) + 'R' + i.src.substr(b);
			a9_out[a9_over[i.src]] = i.src;
		}
		i.src = a9_over[i.src];
	}
	else
	{
		i.style.backgroundColor = 0;
		i.style.color = 0xF7E374;
	}
}

function A9out(i)
{
	if ((i.type == "image") || (i.type == null))
	{
		i.src = a9_out[i.src];
	}
	else
	{
		var b = i.style.backgroundColor;
		i.style.backgroundColor = i.style.color;
		i.style.color = b;
	}
}
