﻿/// <reference path="lib/jquery-1.3.2-vsdoc.js" />

$(function() {
    $("#terms-link a").click(function(event) {
        var guid = $("#report-type").val();
        location.href = "/FacilityTerm/Index/" + guid;
        event.preventDefault();
    });

    $("#abc-filters a").click(function(event) {
        $("#alpha").val($(this).text());
        $("#submit-search").click();
        event.preventDefault();
    });

});