
/**
 * Home
 */

jQuery(document).ready(function()
{
    // open external links in a new window

    jQuery('a[rel="external"], a[href^="http://"], a[href^="/pdf"], a[href^="/uploads"]').not('.cancel, .fancybox').click(function()
    {
        window.open(jQuery(this).attr('href'));
        return false;
    });


    // hide the flash messenger

    setTimeout(function() {
        jQuery('#flashmessenger').fadeTo('slow', 0.01, function() {
            jQuery(this).slideUp('fast');
        });
    }, 10000);


    // animate back to top links

    jQuery('a[href="#top"]').click(function() {
        jQuery('html, body').animate({scrollTop: 0}, 'normal');
        return false;
    });
});

