$(document).ready(function() {
	$('.navigation-home li a').hover(
	  function () {
	  	$('.overlay', this).show();
	  },
	  
	  function () {
	  	$('.overlay', this).hide();
	  }
	);
});

