jQuery(document).ready(function(){
	$("#img_enviar").hover(
		 function(){ $(this).attr("src", "imagenes/enviar_hover.png"); },
		 function(){ $(this).attr("src", "imagenes/enviar.png"); }
	);
	$("#img_enviar .dos").hover(
		 function(){ $(this).attr("src", "imagenes/enviar_hover2.png"); },
		 function(){ $(this).attr("src", "imagenes/enviar.png"); }
	);
	$("#kt_login1").hover(
		 function(){ $(this).attr("src", "imagenes/ingresar_hover.png"); },
		 function(){ $(this).attr("src", "imagenes/ingresar.png"); } 
	);
	if ($("#errorDivII p").length) {
			$("#errorDivII").show('slow');
			$("#errorDivI").hide('slow');
	};
	if ($("#errorDivI").length>1) {
			$("#errorDivI").show('slow');
			$("#errorDivII").hide('slow');
	};
	$(function () {
		$('#img_enviar').formValidator({
			scope		: '#fvCodigo',
			errorDiv	: '#errorDiv1'
		});
	});
	$(function () {
		$('#kt_login1').formValidator({
			scope		: '#fIngreso',
			errorDiv	: '#errorDivI'
		});
	});
	//$($.date_input.initialize);
//	$("#fechanacimiento").date_input();
//	$(el).date_input({ start_of_week: 0 });
});

function borrar(){
	
	document.getElementById('fechanacimiento').value ="";
	}
