$(document).ready(function() {
    // put all your jQuery goodness in here.
    
    $('#delAddress').hide();
    
    $('input#diffDeliveryAddress').click(function(){
    	$(this).closest('tr').hide();
    	$('#delAddress').slideDown();
    });
    
});
