// go to menu
	function goTo(page) {
		 
		 var url = '';
		 
		 switch(page){
			 
			case '1':
				url += "http://www.ameritax.com/tax-help/back-taxes.html";
				break;
			case '2':
				url += "http://www.ameritax.com/tax-help/tax-levy.html";
				break;
			default:
				url += "http://www.ameritax.com/tax-help/get-help-now!.html";
		}
		
		window.location = url;
	}