$(document).ready(function()
{
	$('#Signup_txtEmail').click(function()
	{
		if ($(this).val()=="Your email address")
		{
			$(this).val('');
			$(this).css("color","#000000");
		}
	});
});