//required:
//jquery.js,mjl.js

/*-------------------------------------------------------------
 init
-------------------------------------------------------------*/
$(function(){
  setCurrent();
});

/*-------------------------------------------------------------
 common func
-------------------------------------------------------------*/

//グローバルナビに現ページ処理
function setCurrent(){
  var pid = $('body').attr('id');
  $('#menu a[href*="' + pid + '"]')
  .removeClass('roll')
  .find('img').each(function(){
    this.src = this.src.replace('.png','_o.png');
  });
}

/*-------------------------------------------------------------
 MJL Event Set
-------------------------------------------------------------*/
MJL.event.add(window, "load", function(event) {
  MJL.enable.flash("flash", {version:8, activate:true});
  MJL.enable.rollover("roll", {disable:"unroll"});
}, false);