var image;
//if(BrowserDetect.browser == 'Explorer') {
//	image = 'http://www.juvenescence.net/images/sticky.gif';
//}
image = 'http://www.juvenescence.net/images/sticky_02.png';

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

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

function show_sticky() {
	fade($('sticky'),1);
}

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

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