window.onload = function(){
	
var node = document.getElementById("prod");

node.className = "prod";
node.value = "";

node.onfocus = function(){
	this.className = "type";
};

node.onblur = function(){
	if(this.value == "" ){
		this.className = "prod";
	}
};

};
