//Zelfde als oddeven, maar dan zonder die link

$(document).ready(function(){

  $('.eddovon:odd').addClass('odd')
    .mouseover(function(){
      $(this).removeClass('odd');
      $(this).addClass('odd_hover');
    })
    .mouseout(function(){
      $(this).addClass('odd');
      $(this).removeClass('odd_hover');
    });

  $('.eddovon:even').addClass('even')
    .mouseover(function(){
      $(this).removeClass('even');
      $(this).addClass('even_hover');
    })
    .mouseout(function(){
      $(this).addClass('even');
      $(this).removeClass('even_hover');
    });
});
