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