$(function(){
$("#naar_particulier").hover(function(){
	$(this).attr("src", "images/guihelper/particulier_over.png");
},function(){
	$(this).attr("src", "images/guihelper/particulier_aan.png");
});
$("#naar_zakelijk").hover(function(){
	$(this).attr("src", "images/guihelper/zakelijk_over.png");
},function(){
	$(this).attr("src", "images/guihelper/zakelijk_aan.png");
})

$(".meernieuws").click(function(){
	window.location = $(this).attr('href');
}).mouseover(function(){
	$(this).css({
		"background-image":"url(/images/widget/front_button_over.png)"
	});
}).mouseout(function(){
	$(this).css({
		"background-image":"url(/images/widget/front_button.png)"
	});
});

});

