$( document ).ready( function(){
	
	$( 'div.del_medio#prot_des ul li' ).click( function(){
		
		var descripcion_producto = $( this ).attr( 'rel' );
		$( 'div.contenido_prot p' ).html( descripcion_producto );	
		$( 'div.contenido_prot p' ).hide().fadeIn( 500 );
		
		var id_padre_img = $(this).attr('title');
		
		// oculta muestra imagenes
		$('ul.rotacion_img_productos').empty();
		$.ajax( {
		
			type: 'post',
			url: '/front/js/nueva_consulta_img.php',
			data: "id_padre_img=" + id_padre_img,
			dataType: 'html',
			success: function(respuesta){
		
				$('ul.rotacion_img_productos').append(respuesta);
				$.getScript('/front/js/jquery.innerfade.js');
				$.getScript('/front/js/rota_imagenes.js');
			}
		
		} );
		// consulta docs
		$('div.contenido_prot a').remove();
		$.ajax( {
		
			type: 'post',
			url: '/front/js/nueva_consulta_docs.php',
			data: "id_padre_doc=" + id_padre_img,
			dataType: 'html',
			success: function(respuesta){

				$('div.contenido_prot').append(respuesta);
				$.getScript('/front/js/jquery.innerfade.js');
				$.getScript('/front/js/rota_imagenes.js');
			}
		
		} );

	} );

} );
