﻿$(function () {
    $(".loading").click(function () {
        //IE does not allow animated gifs while the page is still loading
        //using the setTimeout function tricks it.
        setTimeout(function () {
            $('.resultsLink').css('display', 'none');
            $('.message').css('display', 'none');
            $('.loading').css('display', 'block');
        }, 100);
    });
});
