<!--

photoloader=new Array(38);for(c=1;c<=47;c++){photoloader[c]=new Image();}
phototimerid=-1;

function bclick(w){
window.clearTimeout(phototimerid);
photoloader[w].src="images/cabinets/"+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";}
else{setTimeout("btimer("+w+")",50);}}
function bover(w){document.images["photo-thumb"].src=photothumb[w].src;}
function bout(){document.images["photo-thumb"].src=photothumb[sel].src;}

// -->