$(document).ready(function() {
$('.nav_2').mouseover(function() {
 $(this).addClass('hervor');
}); 
$('.nav_2').mouseout(function() {
 $(this).removeClass('hervor');
}); 
}); // Ende Ready

