$(document).ready(
			function() {
			
			if( $('#autor_activo').attr('checked') )
				$('#datos_autor').show('slow' );	
			else
				$('#datos_autor').hide();	
				
				
			$('#autor_activo').click	(function () {
								if($('#autor_activo').attr('checked'))
									$('#datos_autor').show('slow' );
									//esta funcion la ponemos porque el show pone display block 
									//y esto hace que la tabla ocupe menos que el resto de tablas del formulario
								else
									$('#datos_autor').hide('slow');
								});
				
			$('#id_pais').chainSelect('#provincia','/js/provincias.php',
			{
			 before:function (target) //before request hide the target combobox and display the loading message
			 {
				 if($('#id_pais').attr('options')[$('#id_pais').attr('selectedIndex')].value == 94)// id 94 = Espana
					 {
					 		$("#provincia").replaceWith("<select name=\"provincia\" id =\"provincia\"  ><option>- elige provincia -</option></select>");
						
					 }
					 else
					 {
					 		$("#provincia").replaceWith("<input name=\"provincia\" id =\"provincia\" type=\"text\" />");
					 }
			 },
			 after:function (target) //after request show the target combobox and hide the loading message
			 {
			 $("#loading").css("display","none");
			 $(target).css("display","inline");
			 }			 
			 }); 
			 
			 
			
 });
