$(document).ready(function(){
  $("#entries_a").hover(function() {
    $(this).addClass("hover")}, function() {
	$(this).removeClass("hover");
  });
  $("#events_a").hover(function() {
    $(this).addClass("hover")}, function() {
	$(this).removeClass("hover");
  });  
});
