  $(function() {
    $(".button").click(function() {
      
    var email = $("input#email").val();
  
		  var dataString = 'name=subscribeform&subscribe=Subscribe&list[1]=signup&listname=LarryandRaven&email='+ email ;
  //alert (dataString);return false;
  $.ajax({
    type: "POST",
    url: "http://www.larryandraven.com/lists/?p=subscribe&id=1",
    data: dataString,
    success: function() {
					
					$("#list_form").slideUp("normal", function() {				   
							
							$("#list_form").before('<h1>Success</h1><p>You will be e-mailed shortly with a request to confirm your subscription. Please make sure to click the link in that message to confirm your subscription.</p>');		
					
      //$('#subscribe_form').html("&lt;div id='message'&gt;&lt;/div&gt;");
//      $('#message').html("&lt;h2&gt;Contact Form Submitted!&lt;/h2&gt;")
//      .append("&lt;p&gt;We will be in touch soon.&lt;/p&gt;")
//      .hide()
//      .fadeIn(1500, function() {
//        $('#message').append("&lt;img id='checkmark' src='images/check.png' /&gt;");
      });
    }
  });
  return false;
  
    });
  });
  