//フォームで背景変更
$(function(){
	$("div.info p").hover(
		function(){
			this.style.backgroundColor = "#C0D1A3";
		},
		function(){
			this.style.backgroundColor = "white";
		}
	);
});


