


// "Smooth scroll"


jQuery(function($){  $('#mainnav, .ingress, #footer').localScroll(); });


// til senere
$(document).ready(function(){
		var myQuote = $('#my_quote');
		myQuote.hide();
		$('.button').click(function(){
		myQuote.show(500);
		});
		});