$(function(){

    if($('#user_corporate_div').length > 0){

        var setValue = function(value){
            if(value == 1){
                $("#user_corporate_div").show();
            } else {
                $("#user_corporate_div").hide();
            }
        }

        $('input[name=is_corporate]').each(function(){
            var $this = $(this);
            if($this.attr('checked')){
                setValue($this.attr('value'));
            }
        });

        $('input[name=is_corporate]').change(function(){
            setValue($(this).attr('value'));
        });


    }
});
