$(function() { $(".lavaLamp").lavaLamp({ fx: "backout", speed: 600 })});

$(document).ready(function() {

        $("input").focus(function(){
                  $(this).css('background-color','#FFFFB3');
        });
         $("input").blur(function(){
                  $(this).css('background-color','#fff');
        });


         $("textarea").focus(function(){
                  $(this).css('background-color','#FFFFB3');
        });
         $("textarea").blur(function(){
                  $(this).css('background-color','#fff');
        });
});
