$(document).ready(function() {
    // hide all containers first
    $('#terms-of-agreement').hide();
    $('#warranty-policy').hide();
    // now the toggle buttons
    $('#terms-toggle').click(function() {
        $('#terms-of-agreement').slideToggle('slow');
    });
    $('#warranty-toggle').click(function() {
        $('#warranty-policy').slideToggle('slow');
    });
});
