
// javascript functionality for bgsa website behavior

$(document).ready(function() {
    $("a").hover(function(event) {
        $(this).fadeOut(100);
        $(this).fadeIn(200);
    });
});

