function clearEmailnetwork() {
	var email = document.getElementById('search_people');
	if((email.value == "search jobs") || (email.value == "search people") || (email.value == "search companies") || (email.value == "search inbox") || (email.value == "search outbox")) {
		email.value = "";
	}
}
function clearSearchTermJobs() {
	var term = document.getElementById('search_term_jobs');
	if (term.value == "search terms") {
		term.value = "";
	}
}
function clearSearchLocationJobs() {
	var loc = document.getElementById('search_location_jobs');
	if(loc.value == "location") {
		loc.value = "";
	}	
}
function clearSearchTermResumes() {
	var term = document.getElementById('search_term_resumes');
	if (term.value == "search terms") {
		term.value = "";
	}
}
function clearSearchLocationResumes() {
	var loc = document.getElementById('search_location_resumes');
	if(loc.value == "location") {
		loc.value = "";
	}	
}