photoloader=new Array(27);

for(c=1;c<=26;c++)
{
	photoloader[c]=new Image();
}

phototimerid=-1;

function bclick(w)
{
	window.clearTimeout(phototimerid);
	photoloader[w].src="Images/paintings/"+w+".jpg";
	phototimerid=setTimeout("btimer("+w+")",50); 
}

function btimer(w)
{
	if(photoloader[w].complete)
	{
		document.images["photo-image"].src=photoloader[w].src;
		document.getElementById("photo-description").innerHTML=photodescription[w];
		document.images["box-"+sel].className="off";
		document.images["box-"+w].className="on";sel=w;
		document.images["photo-image"].style.height=photoheight[w]+"px";
		document.images["photo-image"].style.width=photowidth[w]+"px";


	}
	
	else
	{
		setTimeout("btimer("+w+")",50);
	}
}

function bover(w)
{
	//x = photothumb[w].src
	//alert('x='+x);
	//document.images["photo-thumb"].src=photothumb[w].src;
	document.images["photo-thumb"].src = "Images/TN/"+w+".jpg"
}

function bout()
{
	//document.images["photo-thumb"].src= photothumb[sel].src;
	document.images["photo-thumb"].src= "Images/TN/"+sel+".jpg" //photothumb[sel].src;
}

