//This is used to automatically fill all input fields on the page with 
//content from their title attribute, clear onclick, and restore onblur.
$(document).ready(function(){
	$('input').each(function(){
		$(this).attr('value',$(this).attr('title'))
		$(this).click(function(){
			if($(this).attr('value')==$(this).attr('title')){
				$(this).attr('value',"");
			}
		})
		$(this).blur(function(){
			if($(this).attr('value')==""){
				$(this).attr('value',$(this).attr('title'));
			}
		})
	})
});