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

$(document).ready(function()
{
    $("#header").click(function(event)
    {
        if ($(event.target).is("#header"))
        {
            window.location = $.siteURL("/");
        }
    });
    $("#sidebar .links li").click(function(event)
    {
        if ($(event.target).is("li"))
        {
            window.location = $("a[href]", event.target).attr("href");
        }
    });
    $(".download_button").click(function(event)
    {
        if (!($(event.target).is("a")))
        {
            window.location = $(event.target).closest(".download_button").children("a").attr("href");
        }
    });
});
