function Course() {
  this.initialize.apply(this, arguments);
}

$.extend(Course.prototype, Route.prototype, {

  name: "Course",
  content: '<div class="window"><dl><!--% if (data.route_category) { %--><dt><!--%= data.route_category %--> <!--%= data.route_name %--><br /><!--%= data.name %--></dt><!--% } else { %--><dt><!--%= data.category %--> <!--%= data.name %--></dt><!--% } %--><dd><p><!--%= data.summary %--></p><!--% if (data.route_category) { %--><ul><li><a class="zoom" title="詳細／広域" href="#zoom" rel="zoom">詳細／広域</a>｜</li><li><a class="prev" title="前へ" href="#prev" rel="prev">前へ</a>｜</li><li><a class="next" title="次へ" href="#next" rel="next">次へ</a></li></ul><!--% } %--></dd></dl></div>'

});