function clearInput(id, value){
	if($(id).value == value){
		$(id).value = "";
	}
}

function restoreInput(id, value){
	if($(id).value == ""){
		$(id).value = value;
	}
}
