if (Drupal.jsEnabled) {  
  $(document).ready(function() {  	    
	$('.node-type-informacion_categorias_productos a.ver_mas').toggle(function() {
		//alert("Detectado el click");	
 		$('.node-type-informacion_categorias_productos .cuerpo').addClass('cuerpo_total');
		$('.node-type-informacion_categorias_productos a.ver_mas').text('reducir')		
	},function() {
		$('.node-type-informacion_categorias_productos .cuerpo').removeClass('cuerpo_total');
		$('.node-type-informacion_categorias_productos a.ver_mas').text('ampliar')		
	});
 });
}



