/*
	左のイメージをクリックした時のリンク先URL
*/
var faLink=new Array(

'product/page01.php',
'product/page02.php',
'product/page03.php',
'product/page04.php',
'product/page05.php',
'product/page06.php'

);



var faCurrentPanel=-1;
var faBgYPos=new Array(0,-50,-90,-130,-170,-210);
var faPanel;
function faChangePanel(n){
faPanel.style.backgroundImage='url(img/flash_image_'+(n+1)+'.png)';
faPanel.href=faLink[n];
if(faCurrentPanel!=-1)document.getElementById('faMenu'+(faCurrentPanel+1)).style.backgroundPosition='0px '+faBgYPos[faCurrentPanel]+"px";
document.getElementById('faMenu'+(n+1)).style.backgroundPosition='240px '+faBgYPos[n]+"px";
faCurrentPanel=n;
}
function faChangePanelRel(n){
n+=faCurrentPanel;
if(n<0){n=5;}else if(n>5){n=0;}
faChangePanel(n);
}
window.onload=function(){
faPanel=document.getElementById('faImagePanel');
if(faPanel==null) return;
var jsv0='javascript:void(0);';
faPanel.href=jsv0;
var id=document.getElementById('faPrevious');
id.href=jsv0;
id.onclick=function(){faChangePanelRel(-1);};
id=document.getElementById('faNext');
id.href=jsv0;
id.onclick=function(){faChangePanelRel(1);};
for(i=0;i<6;i++){
var faMenu=document.getElementById('faMenu'+(i+1));
faMenu.faId=i;
faMenu.href=jsv0;
faMenu.onclick=function(){faChangePanel(this.faId);return false;}
}
}

