DOMAssistant.DOMReady(function () {
	$("input[type=text], textarea").each(function () {
		//alert('ok');//debug
		if (!$$(this).id || $$(this).id !== "newsletter") {
			$$(this).setStyle({
				"background-color" : "#eee",
				"font-size" : "11px",
				"padding" : "2px 2px 2px 6px",
				"border" : "1px solid #616161"
			}).addEvent("focus", function () {
				$$(this).setStyle({
					"background-color" : "#DFDFDF"
				});
			}).addEvent("blur", function () {
				$$(this).setStyle({
					"background-color" : "#eee"
				});
			});
		}
	});
});