// JavaScript Document

// tested with jquery 1.3.2

$(document).ready(function(){	
			
			$('#leftcol .box212 .history ul li:last-child').addClass('last'); /* laatste LI zonder border */
			$('.contentbox .content div:last-child').addClass('last'); /* laatste LI zonder border */
			$('#footer ul li:last-child').addClass('last'); /* laatste LI zonder border */
			
			$('.row:odd').addClass('oddrow'); /* techn. fiche alternating rows */

	   })			

