/*
-------------------------------------------------------------------------------
Toinen poski JavaScript
Author: Sami Granstedt
Version: 23.06.2011

Copyright (c) 2011 Sami Granstedt. All rights reserved.
---------------------------------------------------------------------------- */

// Animate the download link notifier
function notify() {
    $("#notify").delay(1000).effect("bounce", { direction: "down", distance: 15, times: 3 }, "fast", function() {
        $("#notify").delay(2000);
        notify();
    });
}

// Setup external links (open external links in new window)
function setup_external_links() {
    $("a[rel*='external']").each(function() {
        $(this).attr("target", "_blank");
    });
}

$(document).ready(function() {
    // Setup external links
    setup_external_links();

    // Wait for 5 seconds and fade-in the notifier arrow
    $("#notify").delay(5000).fadeIn("slow");

    //  Animate the download link notifier
    notify();
});

