function inputTextFocus(self, text){
	if(text == '') {
		text = 'Keyword...';
	}

	if(self.value == text) {
		self.value = '';
	}
}

function inputTextBlur(self, text){
	if(text == '') {
		text = 'Keyword...';
	}

	if(self.value == '') {
		self.value = text;
	}
}
