// form decoration for [products]

function formDcr() {

	var on = "#F0F7FB";

	var off = "#FFF";

	

	var ojAuthor = document.getElementById("author");

	ojAuthor.onfocus = function () {this.style.background = on;}

	ojAuthor.onblur = function () {this.style.background = off;}

	

	var ojAuthorKana = document.getElementById("authorKana");

	ojAuthorKana.onfocus = function () {this.style.background = on;}

	ojAuthorKana.onblur = function () {this.style.background = off;}

	

	var ojEmail = document.getElementById("email");

	ojEmail.onfocus = function () {this.style.background = on;}

	ojEmail.onblur = function () {this.style.background = off;}

	

	var ojComment = document.getElementById("comment");

	ojComment.onfocus = function () {this.style.background = on;}

	ojComment.onblur = function () {this.style.background = off;}

}




