/* Zie jquery documentatie voor andere effecten */
$(document).ready(function() {

	 $("li:first-child").addClass('first');
	 $("li:last-child").addClass('last');

	 $("tr:first-child").addClass('first');
	 $("tr:last-child").addClass('last');
 
	 $("tr td:first-child").addClass('first');
	 $("tr td:last-child").addClass('last');

	 $("#agenda_box .content div:first-child").addClass('first');
	 $("#agenda_box .content div:last-child").addClass('last'); 

 
});