//everything goes in the jQuery onLoad function
$(document).ready(function() {
													 
	//ok so lets talk about this texting thing... looks like its going to have to be ajax.
	$("#send-text").click( function(){
		
		$("#txtform").fadeOut(1000, function () {
        $.post("textbot.php"/*, {name: $("#txt-name").val(), msg: $("#txt-message").val()}*/, function(){
					$("#sent").fadeIn(1000);
				});
    });
		
		
	});
});
