$(document).ready(function(){

		//$()の中には、ポップを表示させたい要素のID属性、クラス、タグ名を記述します。
		$('#navi3').CreateBubblePopup({
			//▼上からポップを落とす。
			position : 'bottom',
			//▼要素の真ん中にポップが来るようにする。
			align	 : 'center',
			//▼ポップ内テキストを設定する。
			innerHtml: '【介護保険トピックス】<br />介護保険や在宅介護に関する介護の最新情報をお届けします。',
			//▼ポップ内のスタイル属性を設定する。
			innerHtmlStyle: {
				color:'#FFFFFF', 
				'text-align':'center'
			},
			//▼ポップの色を決める。※jquerybubblepopup-themeフォルダ参照
			themeName: 	'all-grey',
			//▼jquerybubblepopup-themeフォルダの相対パスを記述する。
			themePath: 	'http://www.helperstation.net/java/popup/jquerybubblepopup-theme'
		});
});
