if(typeof jQuery=="undefined")jQuery=function(){};if(typeof jQuery.classBehaviours=="undefined")jQuery.classBehaviours=function(){};if(typeof jQuery.classBehaviours.handlers=="undefined")jQuery.classBehaviours.handlers=function(){};jQuery.classBehaviours.handlers.inputFormat={name:"inputFormat",start:function(a){a.onfocus=this.clear;a.onmousedown=this.clear;a.onblur=this.restore;jQuery.classBehaviours.utilities.addEvent(a,"change",this.restore);this.restore(a)},clear:function(b){var a=typeof this.nodeName=="undefined"?b:this,c=jQuery.classBehaviours.handlers.inputFormat;if(a.value==a.title){a.value="";jQuery.classBehaviours.utilities.setClassParameter(a,"passive","no")}},restore:function(b){var a=typeof this.nodeName=="undefined"?b:this,c=jQuery.classBehaviours.handlers.inputFormat;if(a.value==""||a.value==a.title){a.value=a.title;jQuery.classBehaviours.utilities.setClassParameter(a,"passive","yes")}}};if(typeof jQuery.fn!="undefined"){jQuery.fn.inputFormat=function(){return this.each(function(){jQuery.classBehaviours.handlers.inputFormat.start(this)})};$(document).ready(function(){$(".inputFormat").inputFormat()})}