
var _jsMenu = "" + 

'<ul id="mainMenu">' + 
'	<li><a href="' + KURAGE_BASE + 'introduction.html"><img src="' + KURAGE_BASE + 'img/menu/menu_intro<%OVER_intro%>.png" alt="イントロダクション" width="52" height="57" class="<%SWAP_intro%>" /></a></li>' + 
'	<li><a href="' + KURAGE_BASE + 'character.html"><img src="' + KURAGE_BASE + 'img/menu/menu_chara<%OVER_chara%>.png" alt="キャラクター" width="70" height="57" class="<%SWAP_chara%>" /></a></li>' + 
'	<li><a href="' + KURAGE_BASE + 'staff.html"><img src="' + KURAGE_BASE + 'img/menu/menu_staff<%OVER_staff%>.png" alt="スタッフ・キャスト" width="58" height="57" class="<%SWAP_staff%>" /></a></li>' + 
'	<li><a href="' + KURAGE_BASE + 'music.html"><img src="' + KURAGE_BASE + 'img/menu/menu_music<%OVER_music%>.png" alt="ミュージック" width="57" height="57" class="<%SWAP_music%>" /></a></li>' + 
'	<li><a href="' + KURAGE_BASE + 'story.html"><img src="' + KURAGE_BASE + 'img/menu/menu_story<%OVER_story%>.png" alt="ストーリー" width="53" height="57" class="<%SWAP_story%>" /></a></li>' + 
//'	<li><a href="' + KURAGE_BASE + 'goods_1.html"><img src="' + KURAGE_BASE + 'img/menu/menu_goods<%OVER_goods%>.png" alt="グッズ" width="54" height="57" class="<%SWAP_goods%>" /></a></li>' + 
'	<li class="dropmenu">' + 
'		<img src="' + KURAGE_BASE + 'img/menu/menu_goods<%OVER_goods%>.png" alt="グッズ" width="54" height="57" class="<%SWAP_goods%>" />' + 
'		<ul>' + 
'			<li><a href="' + KURAGE_BASE + 'goods_bd.html">BD＆DVD</a></li>' + 
'			<li><a href="' + KURAGE_BASE + 'goods_cd.html">CD</a></li>' + 
'		</ul>' + 
'	</li>' + 
'	<li class="dropmenu">' + 
'		<img src="' + KURAGE_BASE + 'img/menu/menu_special<%OVER_special%>.png" alt="スペシャル" width="61" height="57" class="<%SWAP_special%>" />' + 
'		<ul>' + 
'			<li><a href="' + KURAGE_BASE + 'sp_comment.html">キャストコメント</a></li>' + 
'			<li><a href="' + KURAGE_BASE + 'sp_movie.html">ムービー</a></li>' + 
'		</ul>' + 
'	</li>' + 
//'	<li><a href="http://kuragehime.noitamina.tv/blog/"><img src="' + KURAGE_BASE + 'img/menu/menu_blog<%OVER_blog%>.png" alt="ブログ" width="54" height="57" class="<%SWAP_blog%>" /></a></li>' + 
'	<li><a href="http://kuragehime.net/blog/"><img src="' + KURAGE_BASE + 'img/menu/menu_blog<%OVER_blog%>.png" alt="ブログ" width="54" height="57" class="<%SWAP_blog%>" /></a></li>' + 
'</ul>' + 
'';

function showMenu( active ){
	if( active ){
		_jsMenu = _jsMenu.replace( '<%SWAP_'+active+'%>', 'ddpng' );
		_jsMenu = _jsMenu.replace( '<%OVER_'+active+'%>', '-over' );
	}
	_jsMenu = _jsMenu.replace( /<%SWAP_.+?%>/g, 'swap pngswap' );
	_jsMenu = _jsMenu.replace( /<%OVER_.+?%>/g, '' );
	
	
	document.write( _jsMenu );
	jQ_DropdownClick.dropDownInit( '#mainMenu' );
}



