function getSpeed(id){	switch(id) {		    	case "voluntario":    		return 1000;    				case "disertante": 			return 1500;					case "modalidades":    		return 1000;    }}$(document).ready(function() {	$("div#voluntario_container, div#disertante_container").hide();		$("INPUT[alt='voluntario_container'], INPUT[alt='disertante_container']").each(function () {		var id = $(this).attr('alt'); 			if ($(this).attr('checked'))			$("div#"+id).show();	})	jQuery.fn.slideFadeToggle = function(speed, easing, callback) {		return this.animate({opacity: 'toggle', height: 'toggle'}, speed, easing, callback);	};	          $("INPUT[alt='voluntario_container'], INPUT[alt='disertante_container']").click(function () {    	var id = $(this).attr('alt'); 	    	$("div#"+id).slideFadeToggle(getSpeed(id),"easeOutCubic");    });        $('INPUT#vol_desde_ahora, INPUT#vol_dia_evento').change(function(){    	if ($('INPUT#vol_desde_ahora').attr('checked') || $('INPUT#vol_dia_evento').attr('checked'))    	{    		$('INPUT#vol_participacion_check').val('1');    	}    	else    	{    		$('INPUT#vol_participacion_check').val('');    	}    });    if ($('INPUT#vol_desde_ahora').attr('checked') || $('INPUT#vol_dia_evento').attr('checked'))	{		$('INPUT#vol_participacion_check').val('1');	}	else	{		$('INPUT#vol_participacion_check').val('');	}        $('INPUT#voluntario').change(function(){    	if ($(this).attr('checked') && !$('INPUT#vol_desde_ahora').attr('checked') && !$('INPUT#vol_dia_evento').attr('checked'))    	{    		$('INPUT#vol_participacion_check').val('');    	}    	else    	{    		$('INPUT#vol_participacion_check').val('1');    	}    });    if ($('INPUT#voluntario').attr('checked') && !$('INPUT#vol_desde_ahora').attr('checked') && !$('INPUT#vol_dia_evento').attr('checked'))	{		$('INPUT#vol_participacion_check').val('');	}	else	{		$('INPUT#vol_participacion_check').val('1');	}        $('#fecha_dia, #fecha_mes, #fecha_ano').change(function(){    	$('#fecha_nacimiento').val( $('#fecha_dia').val() +'-'+ $('#fecha_mes').val() +'-'+ $('#fecha_ano').val());    });        $('#fecha_dia, #fecha_mes, #fecha_ano').change(function(){    	$('#fecha_nacimiento').val( $('#fecha_dia').val() +'-'+ $('#fecha_mes').val() +'-'+ $('#fecha_ano').val());    });        $('FORM').submit(function(){    	if ($('#fecha_nacimiento').val() == '--')    	{    		$('#fecha_nacimiento').val('');    	}    })			 $(".ver_modalidades a").click(function () {        //$("div.texto_respuesta#"+$(this).attr('rel')).toggle("slide",  {direction: "up", easing:'jswing'}, 10000);    	$(this).blur();    	var id = $(this).attr('rel'); 	    	$("div#"+id).slideFadeToggle(getSpeed(id),"easeOutCubic");        if ($(this).attr('class') == 'minus')        {        	$(this).removeAttr('class');        }        else        {        	$(this).attr('class','minus');        }        return false;      });    $('#form_acuerdo').submit(function(){    if(!$('#acuerdo').is(':checked'))    {      alert('Tildar "Acuerdo con los valores y principios de Limud" es obligatorio.');      return false;    }  });});
