$(document).ready(function(){

		//$()の中には、ポップを表示させたい要素のID属性、クラス、タグ名を記述します。
		$('#navi2').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'
		});
});

