/*
** People.js
** Copyright Ronningen Design, LLC (http://www.websitesthatdostuff.com)
** Subcontracted to Substratal Code LLC (http://www.substratalcode.com)
** Tampered with by Way Short of Heaven (http://www.wayshortofheaven.com)
**
*/

$(document).ready(function() {
	// Split the list of questions into three columns:
	 $('.pointsOfInterest').each(function() {
	 
		var colsize = Math.round($(this).find("li").size() / 3);
		$(this).find("li").each(function(i) {
			if (i>=colsize && i<(colsize*2)) {
				$(this).addClass('middle_col');
			} else if(i>=(colsize*2)) {
				$(this).addClass('right_col');
			}
		});
		
		$(this).find('.middle_col').insertAfter(this).wrapAll("<ul class='pointsOfInterest'></ul>").removeClass("middle_col");
		$(this).find('.right_col').insertAfter(this).wrapAll("<ul class='pointsOfInterest'></ul>").removeClass("right_col");
	 });
});
