window.onload = function() {

    $("#formBilling_info").click ( function () {
		if ( $("#formBilling_info").is(':checked') ) {
			$("#billing-table").fadeIn('fast');
		} else {
			$("#billing-table").fadeOut('fast');
		}
    } );

    $("#formPhone_systemOther").click ( function () {
		if ( $("#formPhone_systemOther").is(':checked') ) {
			$("#formPhone_system_otherdata").fadeIn('fast');
		} else {
			$("#formPhone_system_otherdata").fadeOut('fast');
		}
    } );

    $("#formMovesOther").click ( function () {
		if ( $("#formMovesOther").is(':checked') ) {
			$("#formMoves_value").fadeIn('fast');
		} else {
			$("#formMoves_value").fadeOut('fast');
		}
    } );
}
