// JavaScript Document

$(document).ready(function(){

$("input[type='text']").focus(function(){
	$(this).css({'background-color':'yellow'});
	});

$("input[type='text']").blur(function(){
	$(this).css({'background-color':''});
	});

$("textarea").focus(function(){
	$(this).css({'background-color':'yellow'});
	});

$("textarea").blur(function(){
	$(this).css({'background-color':''});
	});

$("select").focus(function(){
	$(this).css({'background-color':'yellow'});
	});

$("select").blur(function(){
	$(this).css({'background-color':''});
	});

});

