intrans = 0;
function showPic(nr, page)
{
	if (intrans == 1) return false;
	intrans = 1;
	newpic = document.createElement("img");
	newpic.src = "/images/producten/full/" + page + "_foto" + nr + ".jpg";
	newpic.className = 'bp';
	newpic.alt = "Foto";
	newpic.style.display = "none";
	document.getElementById('showpic').appendChild(newpic);
	Effect.Fade('mainpic', {duration: 0.5, fps: 100});
	setTimeout('showPicCnt(newpic)', 500);
	return false;
}
function showPicCnt(newpic)
{
	document.getElementById("mainpic").parentNode.removeChild( document.getElementById("mainpic"));
	Effect.Appear(newpic, {duration: 0.5, fps: 100})
	newpic.className = 'bp';
	newpic.id = "mainpic"
	intrans = 0;
}
