﻿
$('.datepicker').change(function() {
    if ($('.hafslund-status')) {
        $('.hafslund-status').val('Avtalt befaring');
    }

    if ($('.hafslund-installation')) {
        $('.hafslund-installation').val('Send ordre til ABK');
    }
});

/*if ($('.hafslund-installation')) {
    var value = $(this).val();
    if (value !== 'Send ordre til ABK') {
        $('#extras').hide();
        $('#documents').hide();
    }
}*/

$('.hafslund-installation').change(function() {
    var value = $(this).val();
    if (value === 'Send ordre til ABK') {
        $('#extras').show();
        $('#documents').show();
    }
    else {
        $('#extras').hide();
        $('#documents').hide();
    }
});

if (jQuery.ui && jQuery.ui.tabs) {
    $("#overview").tabs();
}

if (jQuery.ui && jQuery.ui.datepicker) {
    $('.datepicker').datepicker({
        dateFormat: 'dd.mm.yy'
    });
}

if (jQuery.tablesorter) {
    $("#overview table").tablesorter();
}

