

//[pg-20090326:start] apply css class="clearboth" for odd <li> tags
/*$(document).ready(function(){

	// Sitemap Toggle Function
	
	$("#sitemap h2").next("ol").hide();
	$("#sitemap h2:first").next("ol").show();
	$("#sitemap h2").click(function(){									
						  $(this).siblings("ol").hide();
						  $(this).next("ol").show();
	});
	
});
*/

$(document).ready(function(){
    $("ol li > ol > li").addClass("sitemapitem");   
    $("h2 + ol").each(function(){
        var count = 0;
        var $li = $(this).find("li:not(.sitemapitem)");
        for( var i=0; i<$li.length; i++ ){
            if( i != 0 && i % 2 == 0 ){
             // $($li[i]).css("color","red").css("font-size","15px");
              $($li[i]).addClass("clearboth");
            }
        }       
    });   
});
//[pg-20090326:end] apply css class="clearboth" for odd <li> tags