// execute your scripts when DOM is ready. this is a good habit



$(function() {
  $("div.even_oneven div:odd").addClass("oneven");
  $("div.even_oneven div:even").addClass("even");
});

$(function() {
$('ul.headermenu-sub li:first-child').addClass( 'eerste' );
$('ul.headermenu-sub li:last-child').addClass( 'laatste' );
});

$(function() {
$('ul.sub-menu li:first-child').addClass( 'eerste' );
$('ul.sub-menu li:last-child').addClass( 'laatste' );
});
