$(document).ready(function() {
		$('.gnDryice,.gnDryice3,.gnDryice5,.gnDryice10,.gnDryice15,.gnDryiceFuneral,.gnPetcoffin,.gnSmokebox,.gnSuperice,.gnSmokemachine,.gnCompany,.gnSalesoffice').append('<span class="hover"></span>').each(function () {
		  var $span = $('> span.hover', this).css('opacity', 0);
		  $(this).hover(function () {
		    $span.stop().fadeTo(500, 1);
		  }, function () {
		    $span.stop().fadeTo(500, 0);
		  });
		});
	});

