function activeContent(e, text)
{
	e.focus(function(){
		if($(this).val()==text)
		{
			$(this).val('');
		}
	})
	e.blur(function(){
		if($(this).val()=='')
		{
			$(this).val(text);
		}
	})
}