function init_category(){
  $('#category h2 a').not('.buytokyo').each(function(i){
    $(this).click(function(){
      $('#category > div:visible').hide();
      $(this).parent().css({backgroundPosition:'0 -'+(i*37)+'px'});
      $('#category div.menu'+(i+1)).show();
      return false;
    });
  });
}
function rollingObj(id) {
  if (!id) return false;
  this.id = id;
  var obj = document.getElementById(this.id);
  var moving_width = obj.clientWidth - obj.parentNode.clientWidth;
  var rotator;

  this.start = function(speed,delay) {obj.left = 0; obj.mdir = 1;this.resume(speed,delay);}
  this.resume = function(speed,delay) {speed = speed || 50;delay = delay || 2000;var move = obj.left || 0; var mdir = obj.mdir || 1;rotator = setInterval(function(){move = move + mdir * 3;if(move > 0 && move < moving_width) {obj.style.left = -move + 'px';} else {move = (mdir > 0) ? moving_width : 0;mdir = -mdir;}obj.left = move;obj.mdir = mdir;},speed);}
  this.pause = function(){clearTimeout(rotator);}
}
function init_rolling(movingdir) {
  var rObj = new rollingObj('rollingBanner');
  rObj.start();
  $('#rollingBanner').hover(function(){rObj.pause()},function(){rObj.resume()});
}

function init_recauction() {
  $('#ralayers').cycle({
    fx:       'scrollUp', 
    speedIn:  2000, 
    speedOut: 500, 
    easeIn:   'bounceout', 
    easeOut:  'backin',
    timeout:  5000,
    delay:   -2000,
    pause:    1
  });
  $('#raNav').hover(function(){$('#ralayers').cycle('pause');},function(){$('#ralayers').cycle('resume');});
  $('#raNav li a').click(function(){return false;});
}
function init_quickguide() {
  $('#quickGuide dt a').click(function(){$('#quickGuide dl').toggle();return false});
  $('#qg_1 dd li').each(function(i){$(this).mouseover(function(){$('#qg_1 dd p:visible').hide();$('#qg_1 dd p.'+$(this).attr('class')).show();});});
  $('#qg_2 dd li').each(function(i){$(this).mouseover(function(){$('#qg_2 dd p:visible').hide();$('#qg_2 dd p.'+$(this).attr('class')).show();});});
}
function init_recbuy() {
  $('#rblayerA dd:first').show();
  $('#rblayerA dt a').each(function(i){$(this).click(function(){$('#rblayerA dd:visible').hide();$('#rblayerA dd.'+$(this).attr('class')).show();return false;});});
  $('#rblayerB dd:first').show();
  $('#rblayerB dt a').each(function(i){$(this).click(function(){$('#rblayerB dd:visible').hide();$('#rblayerB dd.'+$(this).attr('class')).show();return false;});});
}
function init_japanbuy() {
  $('#shoplayers ul:first').show();
  $('#shopmenu li').each(function(i){$(this).click(function(){$('#shoplayers ul:visible').hide();$('#shoplayers ul.'+$(this).attr('class')).show();return false;});});
}
$(document).ready(function(){
  try{$('#login_user').focus();}catch(e){}
  init_category();
  init_recauction();
  init_quickguide();
  init_rolling();
  init_recbuy();
  init_japanbuy();
});

