var j = jQuery.noConflict();

j(document).ready(function(){
	
	j("a.relations-more").toggle(function(){
		j(this).html("Shorter List");
		j("#relations-wrap").css({
			"max-height" : "none"
		});
	}, function(){
		j(this).html("More Artists");
		j("#relations-wrap").css({
			"max-height" : "204px"
		});
	});
	
});