jQuery.fn.hoverImages = function() {
  this.hover(function() {
    $(this).find('img').each(function() {
      this.src = this.src.replace('Off', 'On');
    });
    $(this).addClass('hover');
  }, function() {
    $(this).find('img').each(function() {
      this.src = this.src.replace('On', 'Off');
    });
    $(this).removeClass('hover');
  });
}



$(document).ready(function() {
$('#navigaatio a').not('.selected').hoverImages();
$('#tuoteryhma_navi a').not('.selected').hoverImages();
$('a.kuvalinkki').hoverImages();
 });

