$(function(){

    $("div.fdet").each(function(i){
        $(this).css("display", fdet ? 'block' : 'none');
    });

    $("a.ford").each(function(i){
        $(this).click(function() {
            $.get(site_path, {a: "set_ford", ford: $(this).attr("id")}, function(data) {
                window.location.reload();
            });
        });
    });

    $("a.fnum").each(function(i){
        $(this).click(function() {
            $.get(site_path, {a: "set_fnum", fnum: $(this).text()}, function(data) {
                window.location.reload();
            });
        });
    });

    $("#fdet").click(function() {
        fdet = !fdet;
        $("div.fdet").each(function(i){
            $(this).css("display", fdet ? 'block' : 'none');
        });
        $.get(site_path, {a: "set_fdet", fdet: (fdet ? "1" : "0")});
    });
});
