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