// JavaScript Document
function toggleBilling(condition) {
	if(condition) {
		$('#billing').hide();
	} else {
		$('#billing').show();
	}
}
