2
You can use the class navbar-inverse
that makes the effect you seek.
Assemble an event headset that removes this class on the first click.
An example would be like this:
$('.navbar-inverse').on('click', function(){
$(this).removeClass('navbar-inverse');
});