/////////////////////////////////////////////////
function loadPhoto (idx) {
	winWidth=photos[idx].imgW + 40;
	winHeight=photos[idx].imgH + 40;
	loadWindow('image.html?'+idx,winWidth,winHeight,'photo'+idx,0,0,0,0,0,0,0);
}

var categories = new Array("Electrostatic","Industrial","Specialties","Marine","Commercial")

/////////////////////////////////////////////////
function photoItem (categoryCode,imgW,imgH,fname,title) {
     this.categoryCode = categoryCode
     this.imgW = imgW
     this.imgH = imgH
     this.fname = fname
     this.title = title
}

var photos = new Array()

photos [0] =  new photoItem(0,238,350,"electrostatic_01","Airport")
photos [1] =  new photoItem(0,350,235,"electrostatic_02","Bath Stalls")
photos [2] =  new photoItem(0,350,255,"electrostatic_03","Filing Cabinets")
photos [3] =  new photoItem(0,350,235,"electrostatic_04","ICBC")
photos [4] =  new photoItem(0,350,236,"electrostatic_05","Lockers")
photos [5] =  new photoItem(0,350,250,"electrostatic_06","Superstore")

photos [6] =  new photoItem(1,350,207,"industrial_01","BC Hydro 1")
photos [7] =  new photoItem(1,229,350,"industrial_02","BC Hydro 2")
photos [8] =  new photoItem(1,350,237,"industrial_03","Forklift")
photos [9] =  new photoItem(1,350,234,"industrial_04","Machinery")

photos[10] =  new photoItem(2,350,252,"specialties_01","Floor")
photos[11] =  new photoItem(2,350,237,"specialties_02","Heritage Hall")
photos[12] =  new photoItem(2,350,236,"specialties_03","Stencil 1")
photos[13] =  new photoItem(2,350,238,"specialties_04","Stencil 2")

photos[14] =  new photoItem(3,350,252,"marine_01","Barge")
photos[15] =  new photoItem(3,350,263,"marine_02","Pillars")

photos[16] =  new photoItem(4,249,700,"commercial_01","Highrise")
photos[17] =  new photoItem(4,350,263,"commercial_02","Stoney School")
photos[18] =  new photoItem(4,237,350,"commercial_03","Robson Market")
photos[19] =  new photoItem(4,350,235,"commercial_04","Satellite Dish")
photos[20] =  new photoItem(4,350,238,"commercial_05","Gasbar")

photos[21] =  new photoItem(0,350,263,"electrostatic_07","X-Ray Equipment")

photos[22] =  new photoItem(1,350,181,"industrial_05","Bridge")
photos[23] =  new photoItem(1,350,263,"industrial_06","Bridge")

photos[24] =  new photoItem(1,350,263,"industrial_07","Bridge")
photos[25] =  new photoItem(1,392,235,"industrial_08","Bridge")

/*
loadPhoto(0);
*/

