$(document).ready(function(){
   $("input[type=text],input[type=password],textarea").bind("focus",function(){$(this).addClass("focus-textbox");});$("input[type=text],input[type=password],textarea").bind("blur",function(){$(this).removeClass("focus-textbox");});
 });
