$(document).ready(function() {
$('#list').ready(function(){
var showshouts = $('#list').fadeOut("slow").load('/shoutbox/returnshouts.php').fadeIn("slow");
var refreshId = setInterval(function()
{
$('#list').fadeOut("slow").load('/shoutbox/returnshouts.php').fadeIn("slow");
}, 10000);

});


$("form#shoutboxsub").submit(function(){
var shoutmessage = $("#shout-message").val();
var name = $("#shoutboxname").val();
var shouthp = $("#shout-hp").val(); 
var spamtrap = $("#spamtrap").val();
var dataString ='name=' + name + '&shout-message=' + shoutmessage + '&shout-hp=' + shouthp + '&spamtrap=' + spamtrap;
//alert (dataString);return false;
  $.ajax({
    type: "GET",
    url: "/shoutbox/sendshout.php",
    data: dataString,
    success: function() {
      $("span#response").append('Sending Shout');
				      }
	      });
					    });});