$(document).ready(function(){
    $(".titledetails").hide();
    $(".jqueryhide").hide();
    $(".jdegrade").hide();
    $("input.occupation").each(function() {
        if($(this).is(":checked")) {
            $(this).parent().next().siblings("td").children(".titledetails").show();
        }
        else {
            $(this).parent().next().siblings("td").children(".titledetails").hide();
        }
    });
    $("input.occupation").click(function() {
        if($(this).is(":checked")) {
            $(this).parent().siblings("td").children(".titledetails").show("slow");
            $(this).parent().siblings("td").children(".titledetails").val("Official Title");
        }
        else {
            $(this).parent().siblings("td").children(".titledetails").hide("slow");
            $(this).parent().siblings("td").children("input.titledetails").val("");
        }
    });
    $("input.titledetails").click(function() {
        $(this).val("");
    });
    $("input.jqueryshowtrigger").click(function() {
        if($(this).is(":checked")) {
            $(this).parent().parent().next().children().children(".jqueryhide").show("slow");
        }
        else {
            $(this).parent().parent().next().children().children(".jqueryhide").hide("slow");
        }
    });
});



