
$(document).ready(function(){
    if($('.computer_inline').length) {
        $('.computer_inline:not(:first)').each(function(){
            if(!$(this).find('input[value!=""]').length) $(this).hide();
        });
        $(".add_computer").click(function(){ 
            $('.computer_inline:not(:visible):first').show(); 
            if(!$('.computer_inline:not(:visible)').length) $(this).hide();
            return false;
        });
    }
    if($(".theft_status").length) {
        $(".theft_status").change(function(){
            $(".theft_status").attr("disabled", true);
            window.location = '/tracking/setstatus/'+$(this).attr('name')+'/'+$(this).val()+'/';
        });
    }

    $('.show_all').click(function(){
        return answer = confirm("Viewing all updates may cause the page to take a long time to load. Are you sure?")
    });

    $('.del_all').click(function(){
        return answer = confirm("This will irreversibly delete all images, location and network information. All data collected form your computer so far will be lost. Are you sure?")
    });
});
