// JavaScript Document

// tested with jquery 1.3.2

$(document).ready(function(){	
			
			$('#topblock ul li:nth-child(1)').addClass('noborder');
			$('#topblock ul li:nth-child(2)').addClass('noborder');
			$('#topblock ul li:nth-child(3)').addClass('noborder');
			$('#topnav ul li:last-child').addClass('last'); /* laatste LI zonder border-right */
			$('#footer ul li:last-child').addClass('last'); /* laatste LI zonder border-right */
			$('#footer ul ul li a:first-child').addClass('first'); /* eerste LI wordt bold */ 

			
			
	   })			

