COLLABORATIVE GIFTING
LEVERAGING REPUTATION FOR TRUST AND APPRECIATION AS AN ALTERNATIVE TO COMMERCE

PLEDGE
Make a pledge request to receive my expertise as a gift

RECEIVE
I share my expertise as a Sounding Board with you as a gift that’s obligation free

APPRECIATE
If you genuinely appreciate the gift you can make an obligation free donation
COLLABORATIVE GIFTING IS PURELY TRUST BASED.
OUR REPUTATIONS HOLD IT IN PLACE
POINTS TO NOTE
READY TO MAKE A PLEDGE REQUEST?
It’s obligation free
FREQUENTLY ASKED QUESTIONS
CLICK THE PLUS SIGN TO THE FAR RIGHT OF EACH QUESTION TO SEE THE ANSWER(S)
WHAT IF I DON'T FOLLOW THROUGH WITH MY PLEDGE?
A pledge is an expression of intent only, not a guarantee. Sounding Board is a gift given obligation free.
WHAT IF SOUNDING BOARD IS NOT FOR ME?
If you don’t appreciate my gift you just send it back and tell me politely “It’s the thought that counts.” There is never an obligation to make a donation.
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;