var descMinLength ;
var signMinLength ;
var descTooShort ;
var signTooShort ;
var cycleFx ;
var cycleTimeout ;

$(document).ready(function(){
    $('.testimonials_block ul').cycle({
        fx: cycleFx,
        speedIn:  2000,
        timeout:   cycleTimeout,
        pause: true
    });
 
    $("#sendTestimonial").submit( function () {
         submitErrors = '';
         if($('#sendTestimonial #description').val().length < descMinLength){
             submitErrors += descTooShort += '\n\r';
         }
          if($('#sendTestimonial #signature').val().length < signMinLength){
             submitErrors += signTooShort += '\n\r';
         }
        if(submitErrors != ''){
            alert(submitErrors);
            return false;
        }
    });
});
function closeTestimonialForm(){
            $('#sendTestimonial').slideUp('fast');
            $(' #addTestimonialButton').fadeIn('slow');
    }

