// JavaScript Document

// JavaScript Document

var html_swf;

function load_animation(){
	
	$('#cabecera2 .seccion').hide();
	$('#animacion').html(html_swf);
	$('#animacion').show();
	
}

function close_animation(){
	
	$('#animacion').html('');
	$('#animacion').hide();
	$('#cabecera2 .seccion').show();
	
}

$(document).ready(function(){
	 html_swf = $('#animacion').html();
	 
	 $('.inscribete input.radio').click(function(){
		 $('.inscribete td.label').removeClass('checked');
		 $(this).parent().next().addClass('checked');
	 });
	 
	 $(document).ready(function(){
	
	//fancybox
	$("a.aviso").fancybox({
		'width'				: '80%',
		'height'			: '90%',
        'autoScale'     	: false,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
	
});
	 
});
