$j(document).ready(function() {

    $j("#fins select").change( function() {
        if ($j(this).val() == 'Other') {
            $j("#fins_other").show();
        } else {
            $j("#fins_other").hide();
        }
    });
    $j("#fins select").change();

    $j("a[rel='external']").click(function() {
        $j.jqURL.loc($j(this).attr("href"), {w:840,h:600,wintype:'_blank'});
        return false;
    });
    
});

