$(document).ready(function () {

	$('div.forumet').hover(function(){ $(this).animate({ opacity: 1 }, 200) },
	function(){ $(this).animate({ opacity: 0.6 }, 150) });
	
	$('div.marknaden').hover(function(){ $(this).animate({ opacity: 1 }, 200) },
	function(){ $(this).animate({ opacity: 0.6 }, 150) });
	
	$('div.portalen').hover(function(){ $(this).animate({ opacity: 1 }, 200) },
	function(){ $(this).animate({ opacity: 0.6 }, 150) });
			 
});
