$(document).ready(function() {
		  $('#navigation li').hover(function() {
		    $(this).addClass('hovered_image');
		  }, function() {
		    $(this).removeClass('hovered_image');
		  });
		});