function initAddCheckAlls(){

    function checkAll(){
        var boxes = $(this).closest("div.input.select").find(":checkbox");
        boxes.attr("checked", !boxes.first().attr("checked"));
        //$(this).closest("div.input.select").find(":checkbox").attr("checked", true);
        return false;
    }

    function mkLink(){
        var a = $("<a>").attr("href","javascript:void(0)").html("select all/none").click( checkAll ).addClass("allselector")
        return a;
    }

    $("div.input.select").append( mkLink );

}

function keywordFocus(){
    window.setTimeout(function(){ $("input#ProgramKeywords").focus()  }, 333);
}


$(initAddCheckAlls);
$(keywordFocus);
