var siteid = 'algoltechnics';
 
/**
 * 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 */
  $('#nav_container a').not('.selected').hoverImages();
  $('a.kuvalinkki').hoverImages();  
  $('#sub_content h1 + strong').css('color', '#23435a').css('font-weight', 'normal').css('font-size', '14px');
  });