//By Maarten van Spil
$(document).ready(function(){
   $('div#content div.tijdlijn div.puntenlijn ul.lijn li').hover(
   function(){
		$(this).css({'background-image' : 'url(img/tijdlijn_puntgrijs.gif)', 'cursor' : 'pointer'});
		$(this).children().css({'display' : 'block'});
		$('div#content div.tijdlijn div.puntenlijn ul.lijn li.hier').children().css({'display' : 'none'});
	},
   function(){
		$(this).css({'background-image' : 'url(img/tijdlijn_puntwit.gif)'});
		$(this).children().css({'display' : 'none'});
		$('div#content div.tijdlijn div.puntenlijn ul.lijn li.hier').children().css({'display' : 'block'});
	});
   $('div#content div.tijdlijn div.puntenlijn ul.lijn li.hier').hover(
   function(){
		$(this).css({'background-image' : 'url(img/tijdlijn_puntgrijs.gif)', 'cursor' : 'pointer'});
		$(this).children().css({'display' : 'block'});
	},
   function(){
		$(this).css({'background-image' : 'url(img/tijdlijn_puntgrijs.gif)'});
		$(this).children().css({'display' : 'block'});
	});
});

