var site = function ()
{
    this.navLi = $('nav ul li').children('ul').hide().end();
    this.init();
};
site.prototype =
{
    init: function ()
    {
        this.setMenu();
    },
    setMenu: function ()
    {
        this.navLi.hover(function ()
        {
            $(this).find('> ul').stop(true, true).slideDown('fast');
        }, function ()
        {
            $(this).find('> ul').stop(true, true).hide();
        });
    }
};
new site();
if ($("#main_container").hasClass("index"))
{
    $(document).ready(function ()
    {
        $("#dontations").animate(
        {
            top: "0px"
        }, 1000, "easeOutBounce", function ()
        {
            var donHeight = $("#dontations").css("top");
            if (donHeight == "0px")
            {
                $(window).scroll(function ()
                {
                    $("#dontations").animate(
                    {
                        top: "-67px"
                    }, 500);
                }).stop();
            }
        });
    });
}
$(function ()
{
    $('.answer').hide();
    $('.title a').click(function (event)
    {
        event.preventDefault();
    });
    $('.title').click(function ()
    {
        $(this).next('.answer').slideToggle();
    });
});

