$(window).bind("load", function()
{
	$("#Navigator td").filter(function()
	{
		return this.parentNode.cells.length == 2;
	}).bindHover(function()
	{
		$("td", this.parentNode).setCSS("background-image", "url('images/gradients/4A2500 to 000.gif')");
	},
	function()
	{
		$("td", this.parentNode)
			.setCSS("background-image", "url('images/gradients/003D7D to 000.jpg')");
	}, true);
});