$(document).ready(function() {
	defaultText = $("#autoCompleteKeyword").val();
	$("#autoCompleteKeyword").focus(function(){
		if($(this).val() == defaultText) {
			$(this).val('');
		}
	});
	$("#autoCompleteKeyword").blur(function(){
		if($(this).val() == '') {
			$(this).val(defaultText);
		}
	});
	$("#autoCompleteKeyword").autocomplete(baseurl + '/autocomplete', {
		width: 310,
		selectFirst: false
	});
});