$(document).ready(function() {
	$('#knappanel li').each(function() {
		var $this = $(this),
			link = $this.find('a').attr('href');
		$(this).click(function(event) {
			event.preventDefault;
			document.location.href = link;
		});
	});
	$('.mere-link').hover(function() {
		var $this = $(this);
		$this.animate({'padding-left': 10},100,function() {
			$this.animate({'padding-left': 18},500);
		});
	},function() {
		$(this).stop(false,true);
	});
});