// JavaScript Document
$(document).ready(function(){
						   
//MUESTRA EL DIV OCULTO DE LA LISTA
	$('#RegistrationInscAagg:checkbox').click(function() {                      
		$("#div_" + $(this).attr("id")).toggle();
		
	});
	
	$('#RegistrationInscWs').click(function() {                      
		$("#div_" + $(this).attr("id")).toggle();
		
	});
	
	// oculto todo
	$('#div_RegistrationInscAagg').hide();
	$('#div_RegistrationInscWs').hide();
	
	// dependiendo si esta chequeado los muestro o no
	if( $('#RegistrationInscAagg').attr("checked") ) {
		$("#div_RegistrationInscAagg").show();
	};
	
	if( $('#RegistrationInscWs').attr("checked") ) {
		$("#div_RegistrationInscWs").show();
	};

});