$(document).ready(function(){
	$('#emailregID').focus(function() { if ($(this).val() == 'Your Email...') {$(this).css('color', '#000').val(''); }});
	$('#emailregID').blur(function() { if ($(this).val() == '') {$(this).css('color', '#585959').val('Your Email...'); }});
});
