This button triggers the next tab to load content, but the tab itself does not switch, it remains on the first tab..
You could assign your Review button a click handler using jQuery...
JS:
$('#btnReview').click(function(){ $('.nav-tabs > .active').next('li').find('a').trigger('click'); });
HTML:
Review
Working Demo