jQuery.noConflict();
var j$ = jQuery;
j$(function(){
	j$("#tourKeyword").focus(function() {
		if(j$(this).val() == j$(this).attr('defaultValue'))
			j$(this).css('color', '#000').val('');
	}).blur(function() {
		if(jQuery.trim(j$(this).val()) == "") {
			j$(this).css('color', '#999').val(j$(this).attr('defaultValue'));
		}
	});
});
