$(document).ready(function(){

  $("#extra-candidate-show").click(function() {
    $("#show-more-dropdown").toggle();
    return false;
  });
  
  $("#candidate-details .yourclaim a").click(function() {
    window.open(this.href);
    return false;
  });

  $("#candidate-details .show-video-link").click(function() {
    $(this).toggleClass('hide-video-link');
    $(this).parent().parent().find(".video\-embed").toggle();
    return false;
  });


});