
	jQuery(document).ready(function(){
		jQuery("input:text, textarea").each(function(){
			if(this.value == '')
			this.value = this.title;
		});
		jQuery("input:text, textarea").click(function(){
			if(this.value == this.title)
			this.value = '';
		});
		jQuery("input:text, textarea").blur(function(){
			if(this.value == '')
			this.value = this.title;
		});
		jQuery("input:image, input:button, input:submit").click(function(){
			jQuery(this.form.elements).each(function(){
				if(this.type =='text' || this.type =='textarea'  ){
					if(this.value == this.title && this.title != ''){
						this.value='';
					}
				}
			});
		});
	});