jQuery(function() {
    var displayShip = function() {
    	$("#shipping_info").toggle($("#delivery_mail").is(':checked'));
    };
    $("#delivery :radio").bind('click', displayShip);
    displayShip();
    $("#ship_to_to").bind('click', function() {
    	$("#ship_name").val($("#to_name").val());
    });
    $("#ship_to_buyer").click(function() {
    	$("#ship_name").val($("#buyer_name").val());
    })
});






