window.addEvent('domready', function(){
		
		var sitemap = new Fx.Slide('footersitemap').hide();
		//$('sitemaplink').setProperty('href' , '#valikko');
		//$('sitemaplink').removeProperty('href');
		$('footer').setStyle('height','125px');
		$('sitemaplink').addEvent('click',function(){
		var footer = new Fx.Styles('footer', {duration:800, transtion: Fx.Transitions.linear, onComplete:function(){
				var scroller = new SmoothScroll();
				scroller.toElement('footer');
				sitemap.slideIn();
			}
		});
			footer.start({
				'height':600
			});
		});	
	
  });

function scrollToFooter(){
	var testi = new SmoothScroll();
	testi.toElement('footer');
	sitemap.toggle();
}