$(document).ready(function(){
	//Examples of how to assign the ColorBox event to elements
	$(".encuentra").click(function(event) {
		event.preventDefault();
		tb_show('', this.href + '?KeepThis=true&TB_iframe=true&width=584&height=343', null);
	});
	$(".inline").click(function(event) {
		event.preventDefault();
		if(document.contactForm.codigo.value.match(/^[0-9]+$/)) {
			tb_show('', '/participa.php?codigo=' + encodeURIComponent(document.contactForm.codigo.value)
				+ '&KeepThis=true&TB_iframe=true&width=657&height=393', null);
			/*
			$('#TB_iframeContent').attr('name','cboxIframe');
			$('#contactForm').submit();
			*/
		} else {
			tb_show('', '/error_codigo.html?KeepThis=true&TB_iframe=true&width=335&height=93', null);
		}
		return false;
	});
});
