$(document).ready(function() {
    // lightbox
    $('a[rel^="lightbox"]').lightBox();

    // rollover footer links
    $('a[rel="sponsor_handler"]').hover(
        function() {
            $(this).children().fadeOut(200);
        },
        function() {
            $(this).children().fadeIn(200);
        }
    );    
});
