jQuery().ready(function(){
	/*jQuery('#navigation').accordion({ 
	    header: '.head', 
        active: false, 
        alwaysOpen: false, 
        navigation: true,
        autoheight: false
    }); 
    
    $('ul#navigation a.head').bind('click', function() {
        var url = $(this).attr('href');
        if (url != '#') location.href = url;
    });*/
    
    $("form").validate({
        rules: {
            password: "required",
            password2: {
                equalTo: "#password"
            }
        }
    });
    
    var tipoimg = $('input[name=tipoimg]:checked').val();
    $('#tipoimg-' + tipoimg).show();
    var tipodoc = $('input[name=tipodoc]:checked').val();
    $('#tipodoc-' + tipodoc).show();
    
    $('input[name=tipoimg]').click(function() {
        $('#tipoimg-0').hide();
        $('#tipoimg-1').hide();
        $('#tipoimg-2').hide();
        $('#tipoimg-' + $(this).val()).show();
    });
    
    $('input[name=tipodoc]').click(function() {
        $('#tipodoc-0').hide();
        $('#tipodoc-1').hide();
        $('#tipodoc-2').hide();
        $('#tipodoc-' + $(this).val()).show();
    });
});
