﻿$(document).ready(function () {
    webapp_tweakup();
});

function webapp_tweakup() {
    webapp_datepickers();
}

function webapp_datepickers() {
    if ($(".data-selector").length > 0) {
        $(".date-selector").datepicker();
    }
}

function webapp_headsup(msg, type) {
    $("#headsup").html(msg)
    .toggleClass(type);

    if (type == "info") {
        $("#headsup").click(function () {
            $("#headsup").hide();
        });
        $("#headsup").slideDown("slow").delay(7000).slideUp("slow");
    }
    else {
        $("#headsup").slideDown("slow");
    }
}
