$(function () {
   $('#send_to_company').click(function () {
   	   company();
   });
   
   $('#not_use_delivery_address').click(function () {
   	   delivery();
   });
});
   
   function company() {
   	   if ($('#send_to_company:checked').length) {
   	       	$('#company_data').show();
   	   } else {
   	       	$('#company_data').hide();   	   	
   	   }   	   
   }
   
   function delivery() {
   	   if ($('#not_use_delivery_address:checked').length) {
   	       	$('#delivery_data').hide();
   	   } else {
   	       	$('#delivery_data').show();   	   	
   	   }   	   
   }
   
   $(function () {
       company();
       delivery();
   })
