﻿$(document).ready(function() {
    $(".contact-first-name").focus(function () {
        $(this).animate({color: "#c21b04"},300);
    });
    
    $(".contact-first-name").blur(function () {
        $(this).animate({color: "#424242"},300);
        validate(("#"+$(this).attr("id")),"alphanum","first name","Field accepts letters, dashes and spaces.");
    });
    
    $(".contact-last-name").focus(function () {
        $(this).animate({color: "#c21b04"},300);
    });
    
    $(".contact-last-name").blur(function () {
        $(this).animate({color: "#424242"},300);
        validate(("#"+$(this).attr("id")),"alphanum","last name","Field accepts letters, dashes and spaces.");
    })
    
    $(".contact-your-email").focus(function () {
        $(this).animate({color: "#c21b04"},300);
    });
    
    $(".contact-your-email").blur(function () {
        $(this).animate({color: "#424242"},300);
        validate(("#"+$(this).attr("id")),"email","your email","Must be a valid email address.");
    });
    
    $(".contact-your-tel").focus(function () {
        $(this).animate({color: "#c21b04"},300);
    });
    
    $(".contact-your-tel").blur(function () {
        $(this).animate({color: "#424242"},300);
        validate(("#"+$(this).attr("id")),"telnumber","contact telephone","Must be a valid number.");
    })
    
   $(".contact-your-mobile").focus(function () {
        $(this).animate({color: "#c21b04"},300);
    });
    
    $(".contact-your-mobile").blur(function () {
        $(this).animate({color: "#424242"},300);
        validate(("#"+$(this).attr("id")),"telnumber","mobile telephone","Must be a valid number.");
    })
    
    $(".contact-your-question").focus(function () {
        $(this).animate({color: "#c21b04"},300);
    });
    
    $(".contact-your-question").blur(function () {
        $(this).animate({color: "#424242"},300);
    })
});
