$(document).ready(function(){
	$(".viktigt").animate( { backgroundColor: 'pink'}, 1000);
	$(".viktigt").animate( { backgroundColor: '#EEEEAE'}, 1000);

	$(".headmenu").hover(
	function(){
		//$(this).animate({opacity: 1}, "fast");
		$(this).animate({color: 'blue'}, {queue:true,duration:500});
	},
	function(){
		$(this).animate({color: 'black'}, {queue:true,duration:500});
		//$(this).animate({opacity: 0.1}, "slow");
	});
});