document.write('<div id="sticky" style="display:none; border:none; cursor:pointer; top:10px; right:-15px; width:264px; height:166px; background:url(\'http://www.juvenescence.net/images/sticky.png\') no-repeat; position:absolute;"><div onclick="hideSticky();" style="margin-left:200px; height:30px;"></div><div onclick="window.location=\'http://www.juvenescence.net/resilience_registration.html\';" style="height:120px;"></div></div>');

window.onscroll = function() {updateSticky();}

function show_sticky() {
	$('sticky').style.display = 'block';
	fadeInElement($('sticky'),0,1,.1,.01);
}

function updateSticky() {
	$('sticky').style.top = pageYOffset + 10 + 'px';
}
	function hideSticky() {
	fadeOutElement($('sticky'),1,0,.1,.01,true);
}

show = function() {show_sticky();}
setTimeout(show,2000);