      $(document).ready(function() {
  
    $("#red").click(function () {
      $("#brand").css({ backgroundColor:"red"});
    });
    
        $("#blue").click(function () {
      $("#brand").css({ backgroundColor:"navy"});
    });

    $("#green").click(function () {
      $("#brand").css({ backgroundColor:"olive"});
    });

});