function getContactForm() {
	$.get("./user/jqIncludes/contactUsGet.php" , {module:"getContactUsForm"} , function (output) {
		$("#contactUsHoldingBox").html(output);
		$("#container").fadeOut(700 , function () {
			$("#contactUsHoldingBox").fadeIn(800 );
			$("#name").focus();
		});
	});
}

function fadeIn() {
	$("#contactUsHoldingBox").fadeIn(800 );
}

function closeContactBox() {
	$("#contactUsHoldingBox").fadeOut(800 , function () {
		$("#container").fadeIn(700);
	});
}

function sendContactUs() {
	var name = $("#name").val();
	var email = $("#email").val();
	var msg = $("#msg").val();
	if ( name == "" || email == "" || msg == "" ) {
		alert ( "There are Fields Left Blank");
		return false;
	} 
	$.post("./user/jqIncludes/contactUsGet.php" , {module:"sendingContactUs" , userName:name , userEmail:email , contactMsg:msg} , function(output ) {
		if ( output == 1 ) {
			$("#contactUsResult").html("YOUR MESSAGE HAS BEEN SUCCESSFULLY SENT");
				$("#name").val("");
				$("#email").val("");
				$("#msg").val("");
		} else {
			alert ( output );
		}
	});
	
}
