function makeTabs(idName) {

	$(idName).before("<ul id=\"tab-index\"></ul>");

	$(function(){
		$count = 0;
			
       		$(idName + " h4").each(function(){
			$tmp = $(this).text();
			$("#tab-index").append("<li><a href=\"#table-" + $count + "\">" + $tmp + "</a></li>" );
			$(this).next('div').attr("id", "table-" + $count);
			$(this).remove();
			$count++;
		});
	});
	
	$(function() {
		//$('#tab-index').tabs({ fx: { height: 'toggle', duration: 300 } });
		$('#tab-index').tabs();

		//$(".tx-rgtabs-pi1").css("height", "auto");
		});
}


