
//rootChone = 'http://localhost/cabinetchone/';
rootChone = 'http://www.cabinetchone.com/new_test/';
btnOn = new Array();
btnOn['immigration'] = new Image; btnOn['immigration'].src = rootChone+'website/btn_immigration_on.gif';
btnOn['domestic'] = new Image; btnOn['domestic'].src = rootChone+'website/btn_domestic_on.gif';
btnOn['estates'] = new Image; btnOn['estates'].src = rootChone+'website/btn_estates_on.gif';
btnOn['litigation'] = new Image; btnOn['litigation'].src = rootChone+'website/btn_litigation_on.gif';

btnOff = new Array();
btnOff['immigration'] = new Image; btnOff['immigration'].src = rootChone+'website/btn_immigration_off.gif';
btnOff['domestic'] = new Image; btnOff['domestic'].src = rootChone+'website/btn_domestic_off.gif';
btnOff['estates'] = new Image; btnOff['estates'].src = rootChone+'website/btn_estates_off.gif';
btnOff['litigation'] = new Image; btnOff['litigation'].src = rootChone+'website/btn_litigation_off.gif';

function hiLite(which) {
	document.getElementById(which).src = btnOn[which].src;
}

function loLite(which) {
	document.getElementById(which).src = btnOff[which].src;
}