
$(document).ready(function(){
		$("#punten ul li").hover(
	    	      function () {	  
	    	    		  $(this).css({ backgroundColor : "#5d5d5d", color : "#fff", cursor : "pointer"});
	    	      }, 
	    	      function () {
	    	    		  $(this).css({ backgroundColor : "#FFF", color : "#000"});
	    	      }
	   );
		
		$("#punten ul li").each(function(){
			$(this).click(function(){
				document.location = $(this).find("a").attr("href");
			});	
		});
});



