var psource,rsource,path,checkthis,closethis;

function rollover(img_name) {
	psource = img_name;
	rsource = img_name + 'D.jpg';
	path = 'assets/img/nav/BTN-';
	document[psource].src = path + rsource;	
}
function rollout(img_name) {
	psource = img_name;
	rsource = img_name + 'U.jpg';
	path = 'assets/img/nav/BTN-';
	document[psource].src = path + rsource;	
}

function closestate() {
	checkthis = document.getElementById('countryfield');
	closethis = document.getElementById('statefield');
	if(checkthis.value == 'dom') {
		closethis.disabled = false;
		closethis.style.background = '#fefefe';
		closethis.style.border = '1px solid #FFFC0F';		
	} else {
		closethis.disabled = true;
		closethis.style.background = '#666';
		closethis.style.border = '1px solid #000';
		closethis.value = '';
	}
}	