/* Zie jquery documentatie voor andere effecten */
jQuery(document).ready(function(){
	
	var i = 1;
	$("#submenu li").each(function (){
		$(this).attr('id', 'mi'+i+'');
		i++;
	});
		
	$("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');
	  


});
