var Airfix = {
	configure: function(){
		
		$$(".volatile").each(function(el){
			$(el).addEvent("focus", function(){
				if(this.getValue() == this.getProperty("title")) {
					this.value = "";
				}
			});
		});
	}
};

window.addEvent("domready", function(){
	Airfix.configure();
});

