// JavaScript Document
// Red Root's jquery experiment

$(window).scroll(function() {
	if($(this).scrollTop() <= 30)
	{
    	$('#gototop').fadeOut(5);
		
	}
	else
	{
		$('#gototop').css('top', $(this).scrollTop() + 50 + "px").fadeIn(700);
	}
});