var $j = jQuery.noConflict();

/* Image fade technique from http://greg-j.com/static-content/hover-fade-redux.html */
$j(document).ready(function() {
	$j('.fadeThis').append('<span class="hover"></span>').each(function () {
	  var $span = $j('> span.hover', this).css('opacity', 0);
	  $j(this).hover(function () {
	    $span.stop().fadeTo(500, 1);
	  }, function () {
	    $span.stop().fadeTo(500, 0);
	  });
	});
});
/* End image fade technique */
