jQuery.noConflict();
jQuery(document).ready(function() {
    
    jQuery("#cadastro").click(function() {
        jQuery('ul.cadastro').hide();
        jQuery('ul.cadastrado').show();
    });
    
    jQuery("#cadastrado").click(function() {
       jQuery('ul.cadastro').show();
       jQuery('ul.cadastrado').hide();
    });
    
    jQuery(".formCadastro li br").remove();
    
});
