//- the sitemap slider

window.addEvent('domready', function(){
			
	var mySlide = new Fx.Slide('sitemap-in').hide();
			
	$('toggle').addEvent('click', function(e){
	e = new Event(e);
	mySlide.toggle();
	e.stop();
	});
}); 

//- the "jump to bottom" thingy

function timeout(){
window.setTimeout("redirect()",600)}

function redirect(){
window.scroll(0,20000); 
return}