﻿$(function() {
	$("div.form").find("input.text, textarea.text")
	.focus(function() {
		$(this).css({
			"background-color": "#ffffff"
		});
	})
	.blur(function() {
		$(this).css({
			"background-color": "#eaeaea"
		});
	})
	.filter(":first").setFocus();
});