function focusInput() {
	var qinp = document.getElementById("q");
	qinp.style.color = '#666';
	if (qinp.value == "Enter Keywords Here...") {
		qinp.value = "";
	}
}

function blurInput() {
	var qinp = document.getElementById("q");
	if (qinp.value == "") {
		qinp.style.color = '#d8d8d8';
		qinp.value = "Enter Keywords Here...";
	}
	setTimeout("document.getElementById('suggestions').style.display = 'none'", 200);
	if (thisValue){
		document.getElementById('q').value = thisValue;
	}
}

function checkInput() {
	var qinp = document.getElementById("q");
	var searchForm = document.getElementById("searchForm");

	if (qinp.value == "" || qinp.value == "Enter Keywords Here...") {
		alert ("Please type some keywords to search.");
	}else{
		searchForm.submit();
	}
}
