function validate()
{
	if ( !document.getElementById('code').value )
	{
		alert("Please enter your game code.");
		document.getElementById('code').focus();
		return false;
	}
	return true;

}
$(function(){
	$("#submit_button").click(function (){
		$("#code_message").html("loading ...");
		$.get("add-code.php", {code: $("#invite_code").val()}, function (data){
			$("#code_message").html(data).show();
			if (!data.match(/^Your code is*/)) {
				$("#code_message").animate({ opacity: 1.0 }, 5000).fadeOut("15000");
			}
		});
	});
	$("#bump_button").click(function (){
		$("#bump_message").html("loading ...");
		$.get("bump.php", {code: $("#bump_code").val()}, function (data){
			$("#bump_message").html(data).show();
			if (!data.match(/^Your code is*/)) {
				$("#bump_message").animate({ opacity: 1.0 }, 5000).fadeOut("15000");
			}
		});
	});
});