$(document).ready(function () {
	$("input,textarea").each(function () {
		//alert('ok');//debug
		$(this).css({
			"background-color" : "#eee",
			"font-size" : "11px",
			"padding" : "2px 2px 2px 6px",
			"border" : "1px solid #616161"
		}).focus(function () {
			$(this).css({
				"background-color" : "#DFDFDF"
			});
		}).blur(function () {
			$(this).css({
				"background-color" : "#eee"
			});
		});
	});
});
