/* THIS IS THE JAVASCRIPT CONTENT */

$(document).ready(function () {
	loadGb();
});

function loadGb() {
	$.post("GuestBook/Gb_Content.php", function(pageReturn){
		if(pageReturn == ""){
			// NOTHING THERE???
			alert("There are no geustbook entries at this time");
			return;
		}else{
			$("#gbcontent").html(pageReturn);
			return;
		}
	});
}

function addGb() {
	var name = $("#name").val();
	var email = $("#email").val();
	var mess = $("#message").val();
	
	if((name == "") || (email == "") || (mess == "")){
		alert("All fields must be filled out.");
		return;
	}
	
	$.post("GuestBook/Gb_Manager.php", {n:name,e:email,m:mess}, function(pageReturn){
		if(pageReturn == "fail"){
			alert("There was a problem with your post. \nIf this happens again, please contact the website administrator and report this issue. \n\n Thank you.");
			return;
		}else if(pageReturn == "pass"){
			loadGb();
			showForm();
			clearForm();
		}else{
			alert("There was a problem with your post. \nIf this happens again, please contact the website administrator and report this issue. \n\n Thank you.");
			return;
		}
	});	
}

function clearForm() {
	$("#name").val("");
	$("#email").val("");
	$("#message").val("");
}

function showForm() {
	if($("#gbform").css("display") == "none"){
		$("#gbform").slideDown("fast");
		$("#gbwrapper").slideUp("fast");
	} else {
		$("#gbform").slideUp("fast");
		$("#gbwrapper").slideDown("fast");
	}
}