$(function() {
	$(".service_item").hover(
  	function () {
		$(this).find('.eh1').fadeIn(1);
    	$(this).find('.eh2').fadeOut(300);
	}, 
	function () {
		$(this).find('.eh1').fadeOut(300);
		$(this).find('.eh2').fadeIn(1);
	 }
	);

});
