// JavaScript Document

$(document).ready(function(){
    $("#primaryNav li:not(.sep)").each(function(n){
        var id = $("a",this).eq(0).text().replace(' ','_').toLowerCase();
        $(this).attr("id",id);
    });

    $("body").addClass( $("a.navLinkOn").text().replace(' ','_').toLowerCase() );
});