window.onload = init; 
function init()
{
	document.join_list.celeb_name.onfocus = function()
	{
		this.value = ''; 
	}
	document.join_list.celeb_name.onblur = function()
	{
		if (this.value == '')
		{
			this.value = "enter your celebrity's name here";
		} 
	}
}