$(function(){
 $('#logo img, #menu img').each(function(){
  if(!$(this).attr('src').match('_over')){
   var img = document.createElement('img');
   img.src = $(this).attr('src').replace('_alap', '_over');
   
  }else
   $(this).addClass('over');
  
  $(this).hover(function(){
   $(this).attr('src', $(this).attr('src').replace('_alap', '_over'));
  }, function(){
   if(!$(this).hasClass('over'))
    $(this).attr('src', $(this).attr('src').replace('_over', '_alap'));
  });
 });
});

