$(document).ready(function(){
	

	var list = $('#money');
	var $list = $(list);
	var baseY = list.offset();
	var sushi = baseY.top;
	$list.mousemove(function(e){
		//$('#info').html('<div class="error">y: '+(sushi-e.clientY)+'</div>');
		var thePosition = (sushi - e.clientY);
		if (thePosition < -108) {
			$("#give-money-link").attr("href","https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=10237258");
		} else {
			$("#give-money-link").attr("href","http://partners.guidestar.org/controller/searchResults.gs?action_donateReport=1&partner=networkforgood&ein=38-2638465");
		}
	});

});
