Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.64 KB | None | 0 0
  1.  
  2.  
  3. $('#ZONAS_VIDA').click(function(event){
  4.  
  5. $("#informacion-centros-poblados").toggle('slow');
  6.  
  7. $( ".zona_vida" ).click(function() {
  8. $( "#informacion-centros-poblados" ).hide( "fast");
  9. });
  10. });
  11.  
  12.  
  13. $('#LAGUNAS_-_Default').click(function(event){
  14.  
  15. $("#informacion-laguna").toggle('slow');
  16.  
  17. $( ".laguna" ).click(function() {
  18. $( "#informacion-laguna" ).hide( "fast");
  19. });
  20. });
  21.  
  22.  
  23. $('#CENTROS_POBLADOS_-_Default').click(function(event){
  24.  
  25. $("#informacion-poblados").toggle('slow');
  26.  
  27. $( ".poblados" ).click(function() {
  28. $( "#informacion-poblados" ).hide( "fast");
  29. });
  30. });
  31.  
  32. $('#AREA_CONSERVACION').click(function(event){
  33.  
  34. $("#informacion-conservacion").toggle('slow');
  35.  
  36. $( ".conservacion" ).click(function() {
  37. $( "#informacion-conservacion" ).hide( "fast");
  38. });
  39. });
  40.  
  41.  
  42. $('#COBERTURA_VEGETAL').click(function(event){
  43.  
  44. $("#informacion-vegetal").toggle('slow');
  45.  
  46. $( ".vegetal" ).click(function() {
  47. $( "#informacion-vegetal" ).hide( "fast");
  48. });
  49. });
  50.  
  51.  
  52. $('#COMUNIDADES_CAMPESINAS').click(function(event){
  53.  
  54. $("#informacion-comunidades").toggle('slow');
  55.  
  56. $( ".comunidades" ).click(function() {
  57. $( "#informacion-comunidades" ).hide( "fast");
  58. });
  59. });
  60.  
  61.  
  62. $('#CONFLICTOS_TIERRAS').click(function(event){
  63.  
  64. $("#informacion-conflictos").toggle('slow');
  65.  
  66. $( ".conflictos" ).click(function() {
  67. $( "#informacion-conflictos" ).hide( "fast");
  68. });
  69. });
  70.  
  71. $('#GEOLOGIA').click(function(event){
  72.  
  73. $("#informacion-geologias").toggle('slow');
  74.  
  75. $( ".geologias" ).click(function() {
  76. $( "#informacion-geologias" ).hide( "fast");
  77. });
  78. });
  79.  
  80. $('#FISIOGRAFIA').click(function(event){
  81.  
  82. $("#informacion-fisiografias").toggle('slow');
  83.  
  84. $( ".fisiografias" ).click(function() {
  85. $( "#informacion-fisiografias" ).hide( "fast");
  86. });
  87. });
  88.  
  89.  
  90.  
  91. $('#GEOMORFOLOGIA').click(function(event){
  92.  
  93. $("#informacion-geomorfologias").toggle('slow');
  94.  
  95. $( ".geomorfologias" ).click(function() {
  96. $( "#informacion-geomorfologias" ).hide( "fast");
  97. });
  98. });
  99.  
  100.  
  101. $('#HIDROGEOLOGIA').click(function(event){
  102.  
  103. $("#informacion-hidrogeologias").toggle('slow');
  104.  
  105. $( ".hidrogeologias" ).click(function() {
  106. $( "#informacion-hidrogeologias" ).hide( "fast");
  107. });
  108. });
  109.  
  110. $('#REGIONES_NATURALES').click(function(event){
  111.  
  112. $("#informacion-naturales").toggle('slow');
  113.  
  114. $( ".naturales" ).click(function() {
  115. $( "#informacion-naturales" ).hide( "fast");
  116. });
  117. });
  118.  
  119.  
  120.  
  121. $('#PRECIPITACION_MEDIA').click(function(event){
  122.  
  123. $("#informacion-precipitaciones").toggle('slow');
  124.  
  125. $( ".precipitaciones" ).click(function() {
  126. $( "#informacion-precipitaciones" ).hide( "fast");
  127. });
  128. });
  129.  
  130.  
  131. $('#TEMPERATURA_MEDIA').click(function(event){
  132.  
  133. $("#informacion-temperatura").toggle('slow');
  134.  
  135. $( ".temperatura" ).click(function() {
  136. $( "#informacion-temperatura" ).hide( "fast");
  137. });
  138. });
  139.  
  140.  
  141. $('#USO_ACTUAL_TIERRAS').click(function(event){
  142.  
  143. $("#informacion-tierras").toggle('slow');
  144.  
  145. $( ".tierras" ).click(function() {
  146. $( "#informacion-tierras" ).hide( "fast");
  147. });
  148. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement