$(function(){
var def='
- フィリピンの都市:
- マニラ
- セブ島
- ボラカイ島
';
var now="";
$(document).ready(function(){
$("#gnavi_sub").html(def);
});
$("#gn02").hover(function(){
now='- 韓国の都市:
- ソウル
- 釜山
- 済州
';
$("#gnavi_sub").html(now);
},
function(){
$("#gnavi_sub").html(def);
});
$("#gn03").hover(function(){
now='- 台湾の都市:
- 高雄
- 台北
';
$("#gnavi_sub").html(now);
},
function(){
$("#gnavi_sub").html(def);
});
$("#gn04").hover(function(){
now='- 香港・マカオの都市:
- 香港
- マカオ
';
$("#gnavi_sub").html(now);
},
function(){
$("#gnavi_sub").html(def);
});
$("#gn05").hover(function(){
now='- タイの都市:
- バンコク
- チェンマイ
- パタヤ
- プーケット
- サムイ島
';
$("#gnavi_sub").html(now);
},
function(){
$("#gnavi_sub").html(def);
});
$("#gn06").hover(function(){
now='- フィリピンの都市:
- マニラ
- セブ島
- ボラカイ島
';
$("#gnavi_sub").html(now);
},
function(){
$("#gnavi_sub").html(def);
});
$("#gn07").hover(function(){
now='- マレーシア・シンガポールの都市:
- シンガポール
- クアラルンプール
- ペナン
- コタキナバル
';
$("#gnavi_sub").html(now);
},
function(){
$("#gnavi_sub").html(def);
});
$("#gn08").hover(function(){
now='- ベトナム・アンコールワットの都市:
- アンコールワット
- ハノイ
- ニャチャン
- ダナン・ホイアン
- ホーチミン
- コンダオ
';
$("#gnavi_sub").html(now);
},
function(){
$("#gnavi_sub").html(def);
});
$("#gn09").hover(function(){
now='- 南アジアの都市:
- インド
- スリランカ
';
$("#gnavi_sub").html(now);
},
function(){
$("#gnavi_sub").html(def);
});
$("#gnavi_sub").hover(function(){
if(now!=""){
$("#gnavi_sub").html(now);
}
else{
$("#gnavi_sub").html(def);
}
},
function(){
$("#gnavi_sub").html(def);
now="";
});
$("#header_main").hover(function(){
},
function(){
now="";
});
})