function allimg(x,y,z) {
	//x=名稱編號,y=檔名類別,z=檔名編號
	vid=getid('v_'+x);sid=getid('s_'+x);aid=getid('a_'+x);	
	view_img='themes/SolHotel/images/l_1/imgshow/'+y+'_img'+z+'.jpg';//mainimgv 圖片顯示
	//view_src='themes/SolHotel/images/l_1/imgshow/'+y+'_src'+z+'.jpg';//mainimgs 原始檔連結
	vid.innerHTML="<img src="+view_img+" />";
	//aid.setAttribute("href",view_src);
}
function getid(id){return document.getElementById(id);}

function mouseoo(num,type){
	menus=document.getElementById("menu").getElementsByTagName("img");
	(type==1)?menus[num].src=menus[num].src.replace(/.gif/,"c.gif"):menus[num].src=menus[num].src.replace(/c.gif/,".gif"); 
}
function mouseinit(){
	menus=document.getElementById("menu").getElementsByTagName("img");
	for (i=0;i<menus.length;i++) {
		Imgs = new Image();
		Imgs.src = menus[i].src.replace(/.gif/,"c.gif");
		menus[i].onmouseover=function(){this.src=this.src.replace(/.gif/,"c.gif");}	
		menus[i].onmouseout=function(){this.src=this.src.replace(/c.gif/,".gif");}	
	}
}

