﻿
/*====================================================
form
====================================================*/
/* input */
$(function() {
	$(":input").focus(function(){
		$(this).css("background","#f9f7f2");
	})
	.blur(function() {
		$(this).css("background","");
	})
})

