// menu_sideNavi

var path = document.location.pathname;

var menu = {
  exhibition : [
    {text:"展示会", link:"/event_campaign/event/exhibition/"}
  ],
  photo : [
    {text:"写真展", link:"/event_campaign/event/photo_exhibition/"},
    {text:"過去の写真展", link:"/event_campaign/event/photo_exhibition/past_photo_exhibition/"}
  ],
  plaza : [
      {text:"プラザ大阪特別カレッジとは", link:"/event_campaign/event/special_college/"},
      {text:"スケジュール", link:"http://fotopus.com/school/real/oplaza/"}
  ],
  lesson : [
    {text:"デジタルミニ教室とは", link:"/event_campaign/event/digital_miniclass/"},
    {text:"スケジュール東京", link:"/event_campaign/event/digital_miniclass/tokyo/"},
    {text:"スケジュール大阪", link:"/event_campaign/event/digital_miniclass/osaka/"}
  ]
};

function write_menu(category){
  var best_match = "";
  for(var i=0,cur_menu; cur_menu = menu[category][i]; i++){
    var _path = cur_menu["link"].split("index.html")[0];
    if( path.match(_path) && _path.length>best_match.length ){ best_match=cur_menu["link"]; }
  }
  for(var i=0,cur_menu; cur_menu = menu[category][i]; i++){
    var _path = cur_menu["link"].split("index.html")[0];
    var _current = cur_menu["link"]==best_match ? ' class="current"' : '';
    document.write('<li'+_current+'><a href="'+cur_menu["link"]+'">'+cur_menu["text"]+'</a></li>');
  }
};

/*------------------------------------------------------------------*/

document.write('<h2><a href="/event_campaign/event/"><img src="/event_campaign/images/localNav_event.gif" alt="イベント" width="156" height="29" /></a></h2>');
document.write('<ul id="localNav">');
document.write('<li><span><a href="/event_campaign/event/exhibition/"><img src="/event_campaign/images/localNav_exhibition_o.gif" alt="展示会" width="154" height="25" /></a></span>');
document.write('<ul>');
write_menu("exhibition");
document.write('</ul>');
document.write('</li>');
document.write('<li><span><a href="/event_campaign/event/photo_exhibition/"><img src="/event_campaign/images/localNav_photo_o.gif" alt="ギャラリー開催の写真展" width="154" height="25" /></a></span>');
document.write('<ul>');
write_menu("photo");
document.write('</ul>');
document.write('</li>');
document.write('<li><span><a href="/event_campaign/event/special_college/"><img src="/event_campaign/images/localNav_plaza_o.gif" alt="プラザ大阪特別カレッジ" width="154" height="25" /></a></span>');
document.write('<ul>');
write_menu("plaza");
document.write('</ul>');
document.write('</li>');
document.write('<li><span><a href="/event_campaign/event/digital_miniclass/"><img src="/event_campaign/images/localNav_lesson_o.gif" alt="デジタルミニ教室" width="154" height="25" /></a></span>');
document.write('<ul>');
write_menu("lesson");
document.write('</ul>');
document.write('</li>');
document.write('<li><span><a href="http://fotopus.com/school/real/"><img src="/event_campaign/images/localNav_college_o.gif" alt="デジタルカレッジ" width="154" height="25" /></a></span></li>');
document.write('<li><span><a href="http://fotopus.com/photocon/"><img src="/event_campaign/images/localNav_contest_o.gif" alt="フォトコンテスト" width="154" height="25" /></a></span></li>');
document.write('</ul><!-- /localNav -->');