var siteid = 'algolchemicals';
 
/**
 * When page loaded properly, run these...
 */
 
/**
 * Hoverimages plugin
 */
 
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(){
  /* Hover-kuvat */
  $('#navigaatio a').not('.selected').hoverImages();
  $('a.kuvalinkki').hoverImages();
  });
  
