NEGOTIATION & MEDIATION
FOR ELT'S, BOARDS, COMMITTEES & FORUMS
ARE YOU
in a messy or complex situation preventing a venture from taking the next step forward?
IS YOUR
cap table creating a stale mate between current and future stakeholders?
ARE YOU
a founder who has given away almost all of their equity?
ARE YOU
an early stage investor under pressure to clear the cap table to make space for other investors?
THERE ARE VIABLE SOLUTIONS
TO ALL OF THESE SCENARIOS THAT CAN WORK FOR EVERYBODY INVOLVED.
function myFunction() {
var $animation_elements = jQuery('.et-waypoint'),
$window = jQuery(window);
function check_if_in_view() {
var window_height = $window.height(),
window_top_position = $window.scrollTop(),
window_bottom_position = (window_top_position + window_height);
$animation_elements.each(function() {
var $element = jQuery(this),
element_height = $element.outerHeight(),
element_top_position = $element.offset().top,
element_bottom_position = (element_top_position + element_height);
//check to see if this element is within viewport
if ((element_bottom_position >= window_top_position) && (element_top_position <= window_bottom_position)) {
$element.addClass('et-animated');
} else {
$element.removeClass('et-animated');
}
});
}
$window.on('scroll resize', check_if_in_view);
}
window.onload = myFunction;