var options = new Array();
// default value
options['00000'] = Array('$99.95', '$50', '1 Mbps', '1 Mbps', '$89.95', '3 Mbps', '2 Mbps');

// non-default values
options['04848'] = Array('$199.95', '$50', '1 Mbps', '1 Mbps', '$89.95', '3 Mbps', '2 Mbps');
options['04863'] = Array('$199.95', '$50', '1 Mbps', '1 Mbps', '$89.95', '3 Mbps', '2 Mbps');



function getData() {
	var zip = $('#txtbox').val();
	
	if (options[zip] != undefined) {
		var str = options[zip];
	} else {
		var str = options['00000'];
	}
	$('#gEmail').html(4);
	$('#pEmail').html(8);
	$('#gWebspace').html('20 Mb');
	$('#pWebspace').html('60 Mb');
	$('#gDialup').html('50-hours/month');
	$('#pDialup').html('50-hours/month');
	$('#gComputers').html('1 thru 4');
	$('#pComputers').html('up to 20');
	$('#gContract').html('1 year');
	$('#pContract').html('1 year');
	
	$('#gInstall').html(str[0]);
	$('#pInstall').html(str[0]);
	
	$('#gMonth').html(str[1]);
	$('#gSpeedDn').html(str[2]);
	$('#gSpeedUp').html(str[3]);
	$('#pMonth').html(str[4]);
	$('#pSpeedDn').html(str[5]);
	$('#pSpeedUp').html(str[6]);
	
}

