Under 'meet the team' when you click 'view profile' a pop up should display. It was working fine before, now all of a sudden it isn't.
<script type="text/javascript">
$(function () {
$('.popup').css({'height':(($(document).height()))+'px'});
});
$(function () {
$('.profile').click(function () {
$(this).parent().find('.popup').css('display', 'block');
});
$('.bio-close').click(function () {
$(this).parents().find('.popup').css('display', 'none');
});
});
</script>