var $j = jQuery.noConflict();

$j(function(){
    $j("#tableExpandTab a").click(function(e){
		e.preventDefault();
		$j('tr.hidden').toggle();
		if ($j(this).html() == 'More listings...') {
			$j(this).html('Fewer listings...');
		} else {
			$j(this).html('More listings...');
		}
    });
});
