imageArray_browse = new Array
(
	"images/verNav1/pharmacyr.gif",//0
	"images/verNav1/hospitalr.gif",//1
	"images/verNav1/clinicr.gif",//2
	"images/verNav1/doctorr.gif",//3
	"images/verNav1/floorsr.gif",//4
	"images/verNav1/signsr.gif",//5
	"images/verNav1/countersr.gif",//6
	
	"images/verNav1/pharmacy.gif",//7
	"images/verNav1/hospital.gif",//8
	"images/verNav1/clinic.gif",//9
	"images/verNav1/doctor.gif",//10
	"images/verNav1/floors.gif",//11
	"images/verNav1/signs.gif",//12
	"images/verNav1/counters.gif",//13
	
	"images/verNav1/overhead.gif",//14
	"images/verNav1/overheadr.gif"//15
)

loadingArray_browse = new Array();

for(counter in imageArray_browse){
	loadingArray_browse[counter] = new Image();
	loadingArray_browse[counter].src = imageArray_browse[counter];
}	

function swapimage_browse(img_name,img_src) {
	document[img_name].src=img_src;
}

