$(document).ready(function(){
	$('.header-items a, .hover-style-opacity').mouseover(function(){
		$(this).css('opacity','0.4')
	}).mouseout(function(){
		$(this).css('opacity',1)
	})
	$('.header').mouseover(function(){
		$(this).css('cursor','pointer')
	})
	$('.header').click(function(){
		location.href = '/nl/3/bureau/news/'
	})
})


