$(document).ready(function(){

    $('table.devices :radio').click(function(){
        if($(this).val() == 'STOLEN') {
            return confirm("Has your computer been stolen? Please do not use this mode for testing your installation.");
        }
    });

    $('table.devices :radio').change(function(){
        $('form.status').submit();
    });

    $("a[href='?da=1']").click(function(){
        return answer = confirm("This will irreversibly delete all images, location and network information. All data collected from your computer will be lost. Are you sure?")
    });

    $("a[rel^='prettyPhoto']").prettyPhoto({
        default_width: 700,
        default_height: 400,
        modal: true,
        show_title: false,
        allow_resize: true
    });

    $("ul.messages").animate({opacity:"1.0"}, 5000).slideUp('slow');
            
    var thumbs = jQuery('#pagination-slider .pagination li');
    thumbs.find('a').click( function() {
        
        thumbs.stop().animate({
            marginTop: 25
        }, { duration: 200, queue: false });
        
        jQuery(this).parent().stop().animate({
            marginTop: 20
        }, { duration: 200, queue: false });
        
        return false;
    });
    
    $("#slider").show();
    $("#slider .wrapper").slides({
        generateNextPrev: false,
        generatePagination: false,
        autoHeight: true,
        width: 940,
    });

    $("#pagination-slider").show();
    $('#pagination-slider ul').jcarousel({
        scroll: 1
    });
});

