// JavaScript Document
$(document).ready(function() {
	$('#taxcert').hide();
	$('#beaccount').hide();
	$("input[name$='user']").click(function(){
		var radio_value = $(this).val();
		if (radio_value =='Distributor') {
        	$('#taxcert').show();
		}
		else if (radio_value =='End User') {
			$('#taxcert').hide();
		}
	});
	
	$("input[name$='paymethod']").click(function(){
		var radio_value = $(this).val();
		if (radio_value =='Better Edge Account') {
        	$('#beaccount').show();
			$('#cc1').hide();
			$('#cc2').hide();
			$('#cc3').hide();
			$('#cc4').hide();
			$('#cc5').hide();
		}
		else if (radio_value =='Credit Card') {
			$('#beaccount').hide();
			$('#cc1').show();
			$('#cc2').show();
			$('#cc3').show();
			$('#cc4').show();
			$('#cc5').show();
		}
	});
	
});
