var msg = 'サイト内を検索します';
$('#searchKeyword')
	.val(msg)
	.css('color', '#999');
$('#searchKeyword').focus(function() {
	if ($(this).val() == msg) {
		$(this)
			.val('')
			.css('color', '#333');
	}
});
