$(document).ready(function() {
	var old_val = $('#keyword').val(); 
    $('#keyword').bind('click select', function() {
    	if( $(this).attr('value') == old_val ) {
    		$(this).attr('value', '');
    	}
    });
    $('#keyword').bind('blur', function() {
    	if( jQuery.trim($(this).attr('value')) == '' ) {
    		$(this).attr('value', old_val);
    	}
    });
});