$(document).ready(function(){
			
	//activación pretty photo		
	$("a[rel^='prettyPhoto']").prettyPhoto();
	
	//limpieza de formularios
	$('textarea').focus(function(){
		$(this).val(' ');
	});
	
	//efectos de texto oculto


    var cerrado = true;

    var txtoculto = $('.txtoculto');
    var leerMas = $('.leerMas');

    //cerrar texto oculto
    leerMas.click(function(){
        if(cerrado == true){
            $(this).next().toggle('slow');
            $(this).text('-');
            cerrado = false;
        }else{
            $(this).next().toggle('slow');
            $(this).text('+');
            cerrado = true;
        };
    });
	
//FIN			
});
