$(document).ready(function () {
	$("input[type=text],textarea").each(function () {
		//alert($(this).id);//debug
		if (!this.id || this.id !== "newsletter") {
			$(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"
				});
			});
		}
	});
});