$(document).ready(function(){
    $('div.contact_form input, div.contact_form textarea').focusin(function() {
          $(this).attr("style","background:#f3f8f8;color:#000099;");
      }).focusout(function() {
          $(this).removeAttr("style");
      });   

});

