var $j = jQuery.noConflict();

$j(document).ready(function(){
	
	$j(".j-Content:first").show();
	$j(".j-Handle").click(function() {
	  $j(this).siblings(".j-Content").hide();
	  $j(this).next(".j-Content").show();
	});

});