// JavaScript Document

$(function() {
    var html = $.ajax({
		url : "./cgi-bin/infobbs/exec/infobbs2out.cgi?cmd=1",
		async : false,
		cache : false,
		dataType : html
	}).responseText;
	document.getElementById('infobbs_display').innerHTML = html;
	
	var sets = [], temp = [];
	$('.infobbs_article1, .infobbs_article2').each(function(i) {
		temp.push(this);
		if (i % 3 == 2) {
			sets.push(temp);
			temp = [];
		}
	});
	if (temp.length) sets.push(temp);

	$.each(sets, function() {
		$(this).flatHeights();
	});
	
	$(function() {
		$('#userinfobbs.left, #userinfobbs.right').flatHeights();
	});
/*
	$('.infobbs_title').each(function(i) {
		temp.push(this);
		if (i % 3 == 2) {
			sets.push(temp);
			temp = [];
		}
	});
	if (temp.length) sets.push(temp);

	$.each(sets, function() {
		$(this).flatHeights();
	});
	
	$(function() {
		$('.infobbs_title').flatHeights();
	});
*/
});


