﻿/**
 * Header
 */
document.write('<div id="header">');
document.write('<div id="header-inner" class="clearfix">');

function languageJump(){
	var selectBoxObj = document.getElementById('langselecter');
	var num = document.getElementById('langselecter').selectedIndex;
	location.href = selectBoxObj.options[num].value;
} 

document.write('<h1><a id="logo" title="Travel Japan.jp" href="http://travel-japan.jp/eng/">Travel-Japan.jp</a></h1>');
document.write('<div id="langnav">');
document.write('<p>Language : ');
document.write('<select id="langselecter">');
document.write('<option value="http://travel-japan.jp/eng/" selected="selected">English</option>');
document.write('<option value="http://www.travel-japan.jp/korean/">한국어</option>');
document.write('<option value="http://www.travel-japan.jp/chs/">中文 (简体字)</option>');
document.write('<option value="http://www.travel-japan.jp/chc/">中文 (繁体字)</option>');
document.write('<option value="http://www.travel-japan.jp/esp/">Español</option>');
document.write('<option value="http://www.travel-japan.jp/thi/">ภาษาไทย</option>');
document.write('</select>');
document.write('<input type="button" name="" onclick="languageJump();" value="Go" />');
document.write('</p>');
document.write('</div>');

// document.write('<p id="header-col-b">Content B</p>');

document.write('</div>');
document.write('</div>');