function searchInputFocus() {
	var sb = document.getElementById("searchInput");
	if(sb.value == "Enter Keywords") {
		sb.value = "";
	}
}

function searchInputBlur() {
	var sb = document.getElementById("searchInput");
	if(sb.value == "") {
		sb.value = "Enter Keywords";
	}
}