function top_switch(s)
{
	if (($("top" + s).style.color).toUpperCase() == "#808080")
	{
		return false;
	}

	if ($("topclicklist").style.display == "none")
	{
		$("topratelist").style.display = "none";
		$("toprate").style.color = "#C52500";
		$("toprate").style.cursor = "pointer";
		$("topclick").style.cursor = "default";
		$("topclicklist").style.display = "";
		$("topclick").style.color = "#808080";
	}
	else
	{
		$("topratelist").style.display = "";
		$("toprate").style.color = "#808080";
		$("toprate").style.cursor = "default";
		$("topclick").style.cursor = "pointer";
		$("topclicklist").style.display = "none";
		$("topclick").style.color = "#C52500";
	}

	return false;
}
