jQuery(document).ready(function() {
    
    jQuery('#call_me_email').click(function() {
       
       if( jQuery('#theirname').val().length == 0  || jQuery('#telephone').val().length == 0 )
       {
        
            //alert("NOT VALID");
            jQuery('#help-error').fadeIn('fast');
            return false;

        }
        else
        {
            
            //alert("VALID");
             jQuery('#help-error').fadeOut('fast');
            
        }
        
    });
  
});


