function EmbedFlash(){
 var version='9.0.0';
 var visual='visualinner';
 var gmenu='gmenuinner';
 if(!$(visual) || !$(gmenu)) return; 
 if(swfobject.hasFlashPlayerVersion(version)){
  var vars={};
  var topflg=0;
  //if(location.href.indexOf("index.php")!=-1 && !getCookie("firstaccess")){
  if(location.href.indexOf("index.php")!=-1 || document.referrer.indexOf(document.domain)<0){
   topflg=1;
  }
  
  var month=(new Date()).getMonth()+1;
  var imgs=[];
  imgs[1]='1';
  imgs[2]='2';
  imgs[3]='3-4';
  imgs[4]='3-4';
  imgs[5]='5';
  imgs[6]='6-8';
  imgs[7]='6-8';
  imgs[8]='6-8';
  imgs[9]='9-10';
  imgs[10]='9-10';
  imgs[11]='11-12';
  imgs[12]='11-12';
  vars={
   path:"img/common/visual/",
   imgfile:imgs[month]+'.jpg',
   topFlag:topflg,
   debug:0
  };
  swfobject.embedSWF("swf/visual.swf?nocache="+(new Date()).getTime(),visual,"100%","100%",version,"swf/expressInstall.swf",vars,'',{"menu":"false","bgcolor":"#FFFFFF"});
  setCookie("firstaccess",1);
  
  vars={
   pageid:$$("body")[0].id
  };
  if(Prototype.Browser.Gecko){
   vars['selfurl']=location.href;
  }
  if(Prototype.Browser.IE){var gmhtml=$(gmenu).innerHTML;}
  swfobject.embedSWF("swf/gmenu.swf?nocache="+(new Date()).getTime(),gmenu,"100%","100%",version,"swf/expressInstall.swf",vars);
  if(Prototype.Browser.IE){$('Gmenu').innerHTML+='<ul style="display:none">'+gmhtml+'</ul>';}
 }else{
  var vi=$(visual);
  var gi=$(gmenu);
  Element.addClassName(gi,"noflash");
  gi.style.display='block';
  Element.addClassName(vi,"noflash");
  vi.style.display='block';
  vi.style.backgroundImage='url(img/common/visual/'+num+'.jpg)';
 }
}

function SmoothScroll(){
 var d=0.5;
 var f=80;
 var l=location.href;
 if(document.location.hash.substr(0,2)=='#_'){
  var id=document.location.hash.substr(2);
  new Effect.ScrollTo(id,{delay:0.3,duration:d,fps:f});
 }
 $$('a[href^=#]:not([href=#])').each(function(e){
  e.observe('click',function(event){
   var h=this.hash.substr(1);
   new Effect.ScrollTo(h,{duration:d,fps:f,afterFinish:function(){if(h!='Wrap'){document.location.hash='#'+h;}}});
   Event.stop(event);
   return false;
  }.bindAsEventListener(e));
 });
}

function getCookie(key) {
 var i,index,arr;
 arr=document.cookie.split(";");
 for(i=0;i<arr.length;i++){
  index=arr[i].indexOf("=");
  if(arr[i].substring(0, index)==key || arr[i].substring(0, index)==" " + key){
   return arr[i].substring(index + 1);
  }
 }
 return false;
}

function setCookie(key, val) {
 var tmp=key+"="+escape(val)+"; ";
 //tmp+="expires=Tue, 1-Jan-1980 00:00:00; ";
 document.cookie=tmp;
}

function clearCookie(key) {
 document.cookie= key+"="+"xx; expires=Tue, 1-Jan-1980 00:00:00;";
}

Event.observe(window,'load',function(){
 SmoothScroll();
 EmbedFlash();
});