﻿function ToggleBackground()
{
    $("div.sitemap ul:nth-child(odd)").addClass("blue");
}

$(document).bind("ready", ToggleBackground);