// JavaScript Document
function rollover_themes(id, color)
{
	document.getElementById("a_"+id).style.color = "#f8f8f8";
	document.getElementById("li_"+id).style.backgroundColor = color;
}

function rollout_themes(id, color)
{
	document.getElementById("a_"+id).style.color = color;
	document.getElementById("li_"+id).style.backgroundColor = "#f8f8f8";
}
