// JavaScript Document

$(document).ready(function()
{
    // Styling Help
    $("#nav .hlist ul li:first").addClass("first");
   
    //initialize Nictitles
    $('.cat-item a').niceTitles({'includeCSS': true, 'includeURL': true, 'cleanUpMailtos': false, 'delay': 0.5});
    
    /* Validation for contact Form */
    $("#contactForm").validate({
      rules: {
        email: {
          required: true,
          email: true
        }
      },
      messages: {
       vorname: "<strong>Pflichtfeld</strong>",
       nachname: "<strong>Pflichtfeld</strong>",
       email: {
         required: "<strong>Pflichtfeld</strong>",
         email: "<strong>Geben Sie eine g&uuml;ltige Email Adresse an</strong>"
        }
      },
      errorPlacement: function(error, element) {
        element.parent().addClass("error");
        error.insertAfter(element);
      }

    });
    

});
                                 
                                 
