	window.addEvent('domready', function(){

  $$('a').each(function(link){
    link.addEvent('click',function(e){
    e = new Event(e);
    var get_direction = this.href;
    toggle_jsk(get_direction);
	  e.stop();
    });
  });



  setTimeout("toggle_jsk('1a-news.html')",2000); 
}); 




function   toggle_jsk(direction){
  /*var myEffect = new Fx.Morph('indexLogo', {duration: 'long'});
  myEffect.start({'opacity': [100, 0]});*/
  $('indexLogo').fade('out');
  setTimeout("window.location.href = '"+direction+"';",500);
}
  



