$(document).ready(function(){

/*form=function(){
		$.colorbox({
		href:"#wrapper", 
		inline:true, 
		width:"613px", 
		height:"450px",
		opacity:.35
	});
}*/
form=function(lang){
	lang = getlang();
	href=lang+"/join.php";
	
	$.colorbox({
		href:href, 
		innerWidth:"613px", 
		innerHeight:"450px",
		opacity:.35,
		iframe:"true"
	});
}

faq=function(lang){
	lang = getlang();
	href=lang+"/faq.php";
	
	$.colorbox({
		href:href, 
		innerWidth:"613px", 
		innerHeight:"450px",
		opacity:.35
	});
}

fb=function(lang){
	lang = getlang();
	href=lang+"/facebook.php";
	
	$.colorbox({
		href:href, 
		innerWidth:"613px", 
		innerHeight:"450px",
		opacity:.35
	});
}

/*$("#submit").bind('click',function(e) {
    e.preventDefault();
		$.post("verify.php",
      $("#join").serialize(),
      function(success){
				if (success=='0'){
					$('#verify-fail').remove();
					$('#join p.para1').prepend('<p id="verify-fail"><strong>** Please resubmit the Captcha field below **</strong></p>');
					$.fn.colorbox({
						href:"#wrapper", 
						inline:true, 
						width:"613px", 
						height:"450px",
						opacity:.35
					});
				
				}else{
					$('#verify-fail').remove();
					$('#submit').unbind('click');
					$('#join').bind('submit',function(){
					js_valid=validate_js();
					if(js_valid == true){
					$.post("join_process.php",
					$("#join").serialize(),
						function(success){
							if (success=='0'){
								$('#verify-fail').remove();
								$('#join p.para1').prepend('<p id="verify-fail"><strong>** We were unable to process your entry **</strong></p>');
								$.fn.colorbox({
									href:"#wrapper", 
									inline:true, 
									width:"613px", 
									height:"450px",
									opacity:.35
								});
							} else{
								$('#verify-fail').remove();
								$('#join_content').html('<p id="verify-fail"><strong>Thank you for your submission</strong></p>');
								$.fn.colorbox({
									href:"#wrapper", 
									inline:true, 
									width:"613px", 
									height:"450px",
									opacity:.35
								});
							}
						},"html");
					}
					});
				}
      },"html");
  });*/


});

