	// -------------------------------------
	// 入力内容のTips
	// -------------------------------------
	function searchBox()
	{
		// キャッシュの無効設定
		$.ajaxSetup({ ifModified: true });

		// 未入力時の処理
		$( 'input' ).blur( function()
		{
			if( $( this ).val() == '' || $( this ).val() == $( this ).attr( 'title' ) )
			{
				$( this ).css( {"color":"#3B4B45", "font-size":"12px" } ).val( $( this ).attr( 'title' ));
			}
		})
	
		// フォーカス時の処理
		.focus( function()
		{
			if( $( this ).val() == $( this ).attr( 'title' ) )
			{
				$( this ).css( {"color":"#000000", "font-size":"12px"} ).val( '' );
			}
		})
	
		.blur();
	}

