// JavaScript Document
$(function(){	

	$('.btn_azul_negro').hover(
	  function () {
		$(this).css("background-color","#000000");
	  },
	  function () {
		$(this).css("background-color","#00bdec");
	  }
	);		
	$('.btn_gris_negro').hover(
	  function () {
		$(this).css("background-color","#000000");
	  },
	  function () {
		$(this).css("background-color","#959187");
	  }
	);		
	$('.btn_negro_gris').hover(
	  function () {
		$(this).css("background-color","#959187");
	  },
	  function () {
		$(this).css("background-color","#000000");
	  }
	);		

	$(".enlaceImgOnOff").hover (function(){ 
		var img=$(this).children().attr("src");
		img = img.replace("_off.","_on.");
		$(this).children().attr("src",img);
	},function(){ 
		var img=$(this).children().attr("src");
		img = img.replace("_on.","_off.");
		$(this).children().attr("src",img);
	});
});

	function js_check_loginOK($name, $value) {
		$patron=/^\w{5,}$/; 
		if ( $patron.test($value) ) {
			return true;
		} else {
			return false;
		}
	}

	function js_check_passOK($name, $value) {
		$patron=/^\w{5,}$/; 
		if ( $patron.test($value) ) {
			return true;
		} else {
			return false;
		}
	}

	function js_check_correoOK($name, $value) {
		$patron=/^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/; 
		if ($patron.test($value)){
			return (true)
		} else {
			return (false);
		}
	}
	
	function js_check_noVacio(a, b) {
		if ( b != 'pepe' ) return true;
		return false;
	}    

