// ロールオーバー処理
function rollAction(obj, filename){
	// ディレクトリの相対パス
	f_directory = './wp-content/themes/volare/images/';
	
	// 画像の差し替え
	obj.src = f_directory + filename;
}

// ページ毎のロールメニュー
function viewpage(gmenu, smenu, flag){
	// グローバルメニュー書き換え
	if(gmenu){
		if(gmenu == 'top'){
			document.getElementById('top').innerHTML = '<img src="./wp-content/themes/volare/images/top_m_o.png" width="52" height="15" class="iepngfix" />';
		} else if(gmenu == 'corporation') {
			document.getElementById('corporation').innerHTML = '<img src="./wp-content/themes/volare/images/corp_m_o.png" width="52" height="15" class="iepngfix" />';
		} else if(gmenu == 'jigyou') {
			document.getElementById('jigyou').innerHTML = '<img src="./wp-content/themes/volare/images/business_m_o.png" width="72" height="15" class="iepngfix" />';
		} else if(gmenu == 'news') {
			document.getElementById('news').innerHTML = '<img src="./wp-content/themes/volare/images/news_m.png_o" width="73" height="15" class="iepngfix" />';
		} else if(gmenu == 'jigyou') {
			document.getElementById('recruit').innerHTML = '<img src="./wp-content/themes/volare/images/recruit_m_o.png" width="59" height="15" class="iepngfix" />';
		}
	}
	
	// サイドメニュー色変更
	if(smenu){
		document.getElementById(smenu).style.color = '#b30000';
	}
	
	// サブメニューフラグ
	if(flag){
		if(flag == 1){
			document.getElementById('internetsolution').innerHTML = '<img src="./wp-content/themes/volare/images/internetsolution_m_t_o.png" alt="インターネットソリューション事業" width="152" height="26" class="iepngfix" />';
			document.getElementById('webpromotion').innerHTML = '<img src="./wp-content/themes/volare/images/webpromotion_m_t_o.png" width="152" height="12" class="iepngfix" />';
		} else if(flag == 2) {
			document.getElementById('internetsolution').innerHTML = '<img src="./wp-content/themes/volare/images/internetsolution_m_t_o.png" alt="インターネットソリューション事業" width="152" height="26" class="iepngfix" />';
			document.getElementById('systemsolution').innerHTML = '<img src="./wp-content/themes/volare/images/systemsolution_m_t_o.png" width="152" height="12" class="iepngfix" />';
		} else if(flag == 3) {
			document.getElementById('mediaservice').innerHTML = '<img src="./wp-content/themes/volare/images/internetmedia_m_t_o.png" width="152" height="13" class="iepngfix" />';
		}
	}
}

