$j(document).ready(function() {
	$j('.fadeThis,.fadeThis1,.fadeThis2,.fadeThis3,.fadeThis4,.fadeThis5,.fadeThis6,.fadeThis7,.fadeThis8').append('<span class="hover"></span>').each(function () {
	  var $span = $j('> span.hover', this).css('opacity', 0);
	  $j(this).hover(function () {
	    $span.stop().fadeTo(200, 1);
	  }, function () {
	    $span.stop().fadeTo(200, 0);
	  });
	});
});


