imageArray_browse = new Array
(
	"../images/pg4NavVer/pharmacyr.gif",//0
	"../images/pg4NavVer/hospitalr.gif",//1
	"../images/pg4NavVer/clinicr.gif",//2
	"../images/pg4NavVer/doctorr.jpg",//3
	"../images/pg4NavVer/floorsr.jpg",//4
	"../images/pg4NavVer/signsr.gif",//5
	"../images/pg4NavVer/countersr.gif",//6
	
	"../images/pg4NavVer/pharmacy.gif",//7
	"../images/pg4NavVer/hospital.gif",//8
	"../images/pg4NavVer/clinic.gif",//9
	"../images/pg4NavVer/doctor.jpg",//10
	"../images/pg4NavVer/floors.jpg",//11
	"../images/pg4NavVer/signs.gif",//12
	"../images/pg4NavVer/counters.gif",//13
	
	"../images/pg4NavVer/overhead.gif",//14
	"../images/pg4NavVer/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;
}

