$( document ).ready( function(){
	
	var contenido_inicial = $( 'div.pagina div:first-child h2' ).attr( 'rel' );
	var nombre_descarga_inicial = $( 'div.pagina div:first-child h2' ).html();
	var nombre_dir_inicial = $( 'div.pagina div:first-child h2' ).attr( 'title' );

	$( 'p.descripcion_documento' ).html( contenido_inicial );
	$( 'p.descripcion_documento' ).append( "<a class='descargas' href='/cms/celulas/documentos/uploads/" + nombre_dir_inicial + "/" + nombre_descarga_inicial + "'>Descargar documento</a>" );
	$( "p.descripcion_documento[rel='noticias'] a.descargas" ).remove();
	
	$( 'div.pagina div h2' ).click( function(){
		
		// transición
		$( 'p.descripcion_documento' ).hide().fadeIn( 500 );
		$( 'p.descripcion_documento a.descargas' ).remove();
		
		// variables boton descarga
		var descripcion_documento = $( this ).attr( 'rel' );
		var nombre_documento = $( this ).html();
		var nombre_dir = $( this ).attr( 'title' );
		
		$( 'p.descripcion_documento' ).html( descripcion_documento );
		
		if( nombre_dir != '' ){
		
			$( 'p.descripcion_documento' ).append( "<a class='descargas' href='/cms/celulas/documentos/uploads/" + nombre_dir + "/" + nombre_documento + "'>Descargar documento</a>" );
		}
				
	} );
	
} );
