function imgChange( oImg, sImg )
{
	oImg.src = sImg;
	oImg.style.cursor="pointer"; 
}	

function ClickOptions (option)
{						
	switch(option)
	{
		case 1:
		document.location.href = "AboutUs.aspx";
		break;
		case 2:
		document.location.href = "PropertyTaxConsulting.aspx";
		break;
		case 3:
		document.location.href = "CommercialAppraisalServices.aspx";
		break;
		case 4:
		document.location.href = "ResidentialAppraisalServices.aspx";
		break;
		case 5:
		document.location.href = "FarmRanchAppraisalServices.aspx";
		break;
		case 6:
		document.location.href = "ContactUs.aspx";
		break;
		case 8:
		document.location.href = "SiteMap.aspx";
		break;
		default:
		document.location.href = "Default.aspx";
		break;		
	}
}	