// JavaScript Document

$(document).ready(function() {
			$("#content").find('.tit_administrador').toggle(function(){
			 $(this).next().animate({ height: 'hide', opacity: 'hide' }, 'slow');
			 
		   },function(){
			  $(this).next().animate({ height: 'show', opacity: 'show' }, 'slow');
			 
		   });
			

			$("#tit_administrador3").toggle(function(){
			 $("#administrador3").animate({ height: 'hide', opacity: 'hide' }, 'slow');
		   },function(){
			 $("#administrador3").animate({ height: 'show', opacity: 'show' }, 'slow');
		   });
			
			$("#content").find('.detalle').hide();
			$("#content").find(".btn_detalle").toggle(function(){
			 $(this).next().next().next().animate({ height: 'show', opacity: 'show' }, 'slow');
		   },function(){
			 $(this).next().next().next().animate({ height: 'hide', opacity: 'hide' }, 'slow');
		   });
			
			
			$("#content").find('#instrucciones').hide();
			$("#content").find('.pestana_instrucciones').toggle(function(){
			 $(this).prev().animate({ height: 'show', opacity: 'show' }, 'slow');
			 $(this).html('Cerrar <img src="http://www.conecta2.com.mx//images/cerrar_instruccionesX.gif"  align="absmiddle" />');
		   },function(){
			  $(this).prev().animate({ height: 'hide', opacity: 'hide' }, 'slow');
			 $(this).html('Instrucciones');
		   });
	});