// JavaScript Document
addListener("load", APInit);


function APInit() {
	document.getElementById('s').value = "Search";
	addListener("focus", function() { if(document.getElementById('s').value=="Search") { document.getElementById('s').value="" }}, document.getElementById('s'));
}
