function searchfor () {
	if (!document.getElementById) return;
	sf = document.getElementById('q');
	sf.onfocus = function () {
		sf.setAttribute('value', '');
	}
	sf.onblur = function () {
		sf.setAttribute('value', 'Search for...');
	}
}

window.onload = function () {
	//searchfor();
};