/* Flat Heights */
$('body.top').ready(function(){
	$('div#system div.section p').flatHeights();
	var sets = [], temp = [];
  $('div#point div.section').each(function(i) {
    temp.push(this);
    if (i % 2 == 1) {
      sets.push(temp);
      temp = [];
    }
  });
  if (temp.length) sets.push(temp);
  $.each(sets, function() {
    $(this).flatHeights();
  });
});

$('body#service').ready(function(){
	$('div#courses div.section p[class!="guide-nav"]').flatHeights();
});

