$(function() {
	$("div.panel_button").click(function(){
		$("div#panel").animate({
			height: "203px"
		})
		.animate({
			height: "203px"
		}, "fast");
		$("div.panel_button").toggle();
	
	});	
	
   $("div#hide_button").click(function(){
		$("div#panel").animate({
			height: "0px"
		}, "fast");
		
	
   });	
	
});


$(function() {

  $(".button").click(function() {
		// validate and process form
		
	var name = $("input#name").val();
    var email = $("input#email").val();
	var text = $("textarea#text").val();
		
		
		var dataString = 'name='+ name + '&email=' + email + '&text=' + text;
		//alert (dataString);return false;
		
		$.ajax({
      type: "POST",
      url: "scripts/process.php",
      data: dataString,
      success: function() {
        $('#contact_form').html("<div id='message'></div>");
        $('#message').html("<h6>Contact Form Submitted!</h6>")
        //.append("<p>We will be in touch soon.</p>")
        .hide()
        .fadeIn(1500, function() {
          //$('#message').append("<img id='checkmark' src='images/check.png' />");
        });
      }
     });
    return false;
	});
});
runOnLoad(function(){
  $("input#name").select().focus();
});
