﻿//画像チェンジ
function showimg(imgpath,href,title,add){
	var path=imgpath;
	var a=href;
	//window.alert(a);
	//document.area.src = path;
	//document.imglink.onClick="changePage(a)";
	var link=document.getElementById("bigimg");
	link.href=a;
	temp=title;
	title="<a href='"+add+"' target='_blank'>"+temp+"<br />"+add+"</a>";
	link.title=title;
	window.document.smallimg.src=path;
	
}
function showimg2(imgpath,href,title){
	var path=imgpath;
	var a=href;
	//var title="Utilize a flexibilidade dos seletores da jQuery e crie um grupo de imagens como desejar. $('#gallery').lightBox();";
	//window.alert(a);
	//document.area.src = path;
	//document.imglink.onClick="changePage(a)";
	//document.getElementById("gallery").innerHTML='<a title="'+title+'" href="'+a+'" rel="lightbox">  <img src="'+path+'" />  </a>';
	var link=document.getElementById("bigimg");
	link.href=a;
	link.title=title;
	window.document.smallimg.src=path;
	window.document.smallimg.alt=title;
	//window.alert(path);
	
}

