﻿$(document).ready(function () {
    $(".Phone").mask("(999) 999-9999");
    $(".datepicker").datepicker();

    /* Sets current menu as active */
    var currentLocation = window.location;
    var startingPath = $("#startingPath").val(); //.substring(0, $("#startingPath").val().length - 1)

    $("#sidebar div ul li a").each(function () {
        var test = startingPath + $(this).attr("href")
        if (test == currentLocation) {
            $(this).parent().addClass("Active");
        }
    });

    /* set class state */
    $(".t-action-link").parent().addClass("t-state-selected");

    /* function handler to show popout */
    $("#dialog").jqm();

    /* function handler to stop flash player */
    $(".jqModal").click(function () {
        //$("#player").Play();
        document.getElementById("player").Play();
    });

    /* function handler to stop flash player */
    $(".jqmClose").click(function () {
        //$("#player").StopPlay();
        document.getElementById("player").StopPlay();
    });
});
