﻿$(document).ready(function () {    
    $(".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.");
    })
    
    $(".your-password").focus(function () {
        $(this).animate({color: "#c21b04"},300);
    });
    
    $(".your-password").blur(function () {
        $(this).animate({color: "#424242"},300);
        validate(("#"+$(this).attr("id")),"password","Your code","Your password contains invalid characters.");
    });
});

