/* 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'); 

 	 $(".homepage_news .morenewsblock div:first-child").addClass('first');
	 $(".homepage_news .morenewsblock div:last-child").addClass('last'); 
	 
	 $("#product4_Overview .window div.results:first-child").addClass('first');
	 $("#product4_Overview .window div.results:last-child").addClass('last'); 
	 	 
	 $("#resultswrapper div.results:first-child").addClass('first');
	 $("#resultswrapper div.results:last-child").addClass('last'); 

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