$(document).ready(function(){
	$('input, textarea, select').live('focus', function() {
		$(this).closest('.item').stop().animate({'background-color': '#DDEAF1'}, 500);
	});
	
	$('input, textarea, select').live('blur', function() {
		$(this).closest('.item').stop().animate({'background-color': 'white'}, 500);
	});
});


