$(document).ready(function(){
	
  $('#canvas-head .navigation img').hover(
    function() {
      this.src = this.src.replace('.jpg', '-hover.jpg');
    },
    function() {
      this.src = this.src.replace('-hover.jpg', '.jpg');
    }
  );
      
});

