

// import
// ----------------------------------------------------------------------- //

$(function(){

	var timekey = (new Date()).getTime();

	var data_file = "staffblog/staff_list.dat?" + timekey;
	$("#staffArea").load(data_file);

});


// headline
// ----------------------------------------------------------------------- //

$(function(){

	$("ul.staffList .staffBox").each(function(){
		var staffs = $(this).children().length;
		(staffs % 3) ? classN="true" : classN="false";
		console.log("test");
//		$(this).children().slice(0, reporters-noline).addClass("line");
	});

})

