$(function() {
   //$("input, textarea").placeholder();

   //hide read more paragraphs, show link
   $(".more").show().click(function() {
      $(this).parent().nextAll("p").show("fast");
      $(this).hide("fast");
   }).parent().nextAll("p").hide();
   
   $("span.email").each(function(i) {
      var text = $(this).text().replace(" [at] ", "@").replace(" [.] ", ".");
      $(this).text(text).wrap('<a href="mailto:' + text + '" />');
   });
   
   $("#bot").remove();
   
   $("input, textarea").each(function() {
      $(this).focusin(function() {
         if ($(this).data('valid') !== false) {
            var messageID = $(this).attr("data-message");
            if (messageID) {
               $("#" + messageID).show("fast");
            }
         }
      });
      $(this).focusout(function() {
         var messageID = $(this).attr("data-message");
         if (messageID) {
            $("#" + messageID).hide("fast");
         }  
      });
   });
   
   $("#contact-form").h5Validate();
});
