$(document).ready(function() {
    $("input[type=text]").focus(function() {
        $(this).css("border","2px solid #AF0000");
        $(this).css("background","#FFF");
    });

    $("input[type=text]").blur(function() {
        $(this).css("border","2px solid #2F5D9B");
        $(this).css("background","#EEE");
    });

    $("textarea").focus(function() {
        $(this).css("border","2px solid #AF0000");
        $(this).css("background","#EEE");
    });

    $("textarea").blur(function() {
        $(this).css("border","2px solid #2F5D9B");
        $(this).css("background","#EEE");
    });


});
