function textInputTextColour(id) {
	var attrValue = $('#' + id).attr('value');
	$('#' + id).focus(function() {
		if ($(this).attr('value') == attrValue) {
			$(this).attr('value', '');
			$(this).css('color', '#6f7a82');
		}
	});
	$('#' + id).blur(function() {
		if ($(this).attr('value') == '') {
			$(this).attr('value', attrValue);
			$(this).css('color', '#bdbdbd');
		}
	});
}