﻿/// <reference path="jquery-1.4.2-vsdoc.js" />
/// <reference path="jquery.validate.js" />
/// <reference path="Microsoft.Mvc.Ajax.js" />

$(function () {
    $(".datepicker").datepicker({ showOn: 'button', buttonImage: '/Content/images/calendar.gif', buttonImageOnly: true });

    $(".button").button();

    $(".pretty-table tbody tr:odd").addClass("alt");

    $(".linkable").click(clickElement);

    $(".confirm").click(function () { return confirm("Are you sure?"); })
});

function clickElement(e) {
    window.location.href = $(this).attr("href");
}
