// JavaScript Document

Event.observe(window, 'load', function(){
	new accordion("accordion");
}, false);



   var imglist = [
      [ "images/topimg01.jpg", "Chinese Restaurant FU XIANG(フーシャン)" ] ,
      [ "images/topimg02.jpg", "Chinese Restaurant FU XIANG(フーシャン)" ] ,
      [ "images/topimg03.jpg", "Chinese Restaurant FU XIANG(フーシャン)" ] ,
	  [ "images/topimg04.jpg", "Chinese Restaurant FU XIANG(フーシャン)" ] ,
      [ "images/topimg05.jpg", "Chinese Restaurant FU XIANG(フーシャン)" ] ,
      [ "images/topimg06.jpg", "Chinese Restaurant FU XIANG(フーシャン)" ] 
   ];


   var j$ = jQuery; 
 
j$(function(){ 
  j$(".acc").each(function(){ 
    j$("li > a", this).each(function(index){ 
      var $this = j$(this); 
 
      if(index > 0) $this.next().hide(); 
 
      $this.click(function(){ 
        j$(this).next().toggle().parent().siblings() 
          .children("ul:visible").hide(); 
        return false; 
      }); 
    }); 
  }); 
}); 


function RandomImageLink() {
   var selectnum = Math.floor(Math.random() * imglist.length);
   var output = 
      '<img src="' + imglist[selectnum][0] + '"' +
      ' alt="' + imglist[selectnum][1] + '"><br>';
   document.write(output);
}

