$(document).ready(function() {
    animate();
});

function animate() {
    $("#navLinks li a").each( function(i, elem) {
        $(elem).animate({ borderRightWidth: "" + Math.floor(Math.random() * 75) + "px"}, "slow");
    });

    window.setTimeout(animate, 15000);
}