$(function(){
  
  // Initialize fancybox
  $('#newTestimonial').fancybox({
    type: 'inline',
    centerOnScroll: true,
    onStart: function(){
      $('#testimonialForm').show();
    },
    onCleanup: function(){
      $('#testimonialForm').hide();
    }
  });
  
  $("#testimonial").bind("submit", function() {

  	if (
  	    $("#testimonialName").val().length < 1 
  	    || $("#testimonialName").val().length < 1 
  	    || $("#testimonialCompany").val().length < 1 
  	    || $("#testimonialMessage").val().length < 1
  	   ) {
  	    $("#testimonialError").show();
  	    $.fancybox.resize();
  	    return false;
  	}

  	$.fancybox.showActivity();

  	$.ajax({
  		type: "POST",
  		cache	: false,
  		url: "sendTestimonial.php",
  		data: $(this).serialize(),
  		dataType: 'html',
  		success: function(data) {
  			$.fancybox(data);
  		}
  	});

  	return false;
  });
  
});
