﻿/// <reference name="MicrosoftAjax.js" />
/// <reference path="http://ajax.microsoft.com/ajax/jQuery/jquery-1.3.2.min-vsdoc.js" />
$(function() {
    var spnFilterOne = $("#spnFilterOne");
    spnFilterOne.next().hide();
    spnFilterOne.click(function() {
        if ($(this).next().is(':visible')) {
            $(this).next().animate({ height: "hide" }, 300);
        }
        else {
            $(this).next().animate({ height: "show" }, 300, "easeOutBack");
        }
    });
});
