/* Zie jquery documentatie voor andere effecten */
jQuery(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');
	 
	 $(".text p:first-child").addClass('first');
	 $(".text p:last-child").addClass('last');
	 
	 $(".resultswrapper div.results:first-child").addClass('first');
	 $(".resultswrapper div.results:last-child").addClass('last');
	 
	 $(".overview_videos div.videoitem:first-child").addClass('first');
	 $(".overview_videos div.videoitem:last-child").addClass('last');
	 
	 $("#overview_photos_thumbs div.thumb:first-child").addClass('first');
	 $("#overview_photos_thumbs div.thumb:last-child").addClass('last');

});
