$(document).ready(function () {
	$(document).keyup(function(e) {	if (e.keyCode == 27) { document.location = '/login'; return false; } });	
	$('a.scrollto').live('click', function(event) { event.preventDefault(); $.scrollTo( '#'+this.hash, 500 ); });	
		
	showTopLink();
	$(window).bind('resize', function(){
		showTopLink();
	});
});
function showTopLink () {
	if($(window).height() < $(document).height() - 80) {			
		$('#gototop').css('display', 'inline');
	}
	else {		
		$('#gototop').css('display', 'none');
	}
}
