$(function(){
	$('input[type!=button][type!=submit], select, textarea')
		.focus(function(e){
			e.target.style.backgroundColor = '#BDCDE7';	
		})
		.blur(function(e){
			e.target.style.backgroundColor = '';	
		});
});
