/*
 *  default.js
 *  zombiezen
 *
 *  Created by Ross Light on 8/16/09.
 */

$(document).ready(function()
{
    $.get(
        $.siteURL("qotd/json/"),
        null,
        function(data, status, xhr)
        {
            var newP = $("<p>").addClass("qotd").text(data['text']);
            $("footer").prepend(newP);
        },
        "jsonp"
    );
    $(".download_button").click(function(event)
    {
        if (!($(event.target).is("a")))
        {
            window.location = $(event.target).closest(".download_button").children("a").attr("href");
        }
    });
});
