var $j = jQuery.noConflict();

$j('img.thumb').hover(
	function () {
		$j(this).fadeTo(0, 1).addClass('livethumb');;
		var name = $j(this).attr('data-name');
		$j('#cathead span').html( function(){return name;} );
	},
	function () {
		if ( $j(this).attr('id') != 'livethumb' ) {
			$j(this).fadeTo(0, 0.6).removeClass('livethumb');
		}
		$j('#cathead span').html('');
	}
);

