var pass = "";

/* メニュー変更 */
function chImg(img,name,on){
	if(on){
		img.src = pass+"img/btn_"+name+"_ovr.jpg";
	}else{
		img.src = pass+"img/btn_"+name+".jpg";
	}
}

/*ナビゲーション*/
function menu(page){

	var HTML ="";
	HTML += '<div class="navi_out">';
	HTML += '<div class="navi"><a href="'+pass+'index.html"><img src="'+pass+'img/btn_top.jpg" width="146" height="34" alt="top" onmouseover="chImg(this,\'top\',true)" onmouseout="chImg(this,\'top\')" /><br /></a></div>';
	HTML += '<div class="navi"><a href="'+pass+'info/index.html"><img src="'+pass+'img/btn_info.jpg" width="146" height="37" alt="information" onmouseover="chImg(this,\'info\',true)" onmouseout="chImg(this,\'info\')" /></a><br /></div>';
	HTML += '<div class="navi"><a href="'+pass+'disco/index.html"><img src="'+pass+'img/btn_disco.jpg" width="146" height="37" alt="discography" onmouseover="chImg(this,\'disco\',true)" onmouseout="chImg(this,\'disco\')" /></a><br /></div>';
	HTML += '<div class="navi"><a href="'+pass+'profile/index.html"><img src="'+pass+'img/btn_prof.jpg" width="146" height="35" alt="profile" onmouseover="chImg(this,\'prof\',true)" onmouseout="chImg(this,\'prof\')" /></a><br /></div>';
	HTML += '<div class="navi"><a href="'+pass+'message/index.html"><img src="'+pass+'img/btn_bbs.jpg" width="146" height="34" alt="bbs" onmouseover="chImg(this,\'bbs\',true)" onmouseout="chImg(this,\'bbs\')" /></a><br /></div>';

	HTML += '<div class="navi"><a href="'+pass+'blog/index.html"><img src="'+pass+'img/btn_blog.jpg" width="146" height="39" alt="blog" onmouseover="chImg(this,\'blog\',true)" onmouseout="chImg(this,\'blog\')" /></a><br /></div>';
	HTML += '<div class="navi"><a href="'+pass+'mobile/index.html"><img src="'+pass+'img/btn_mobile.jpg" width="146" height="35" alt="mobile" onmouseover="chImg(this,\'mobile\',true)" onmouseout="chImg(this,\'mobile\')" /></a><br /></div>';
	HTML += '<div class="navi"><a href="'+pass+'special/index.html"><img src="'+pass+'img/btn_special.jpg" width="146" height="35" alt="special" onmouseover="chImg(this,\'special\',true)" onmouseout="chImg(this,\'special\')" /></a><br /></div>';
//メールは別ウインド？？
	HTML += '<div class="navi"><a href="http://www.sonymusic.co.jp/Music/Mail/exp.php?ID=70004669" target="_blank"><img src="'+pass+'img/btn_mail.jpg" width="146" height="37" alt="mail service" onmouseover="chImg(this,\'mail\',true)" onmouseout="chImg(this,\'mail\')" /></a><br /></div>';
	HTML += '<div class="navi"><a href="'+pass+'request/index.html"><img src="'+pass+'img/btn_req.jpg" width="146" height="37" alt="request" onmouseover="chImg(this,\'req\',true)" onmouseout="chImg(this,\'req\')" /></a><br /></div>';
	HTML += '</div>';
	document.write(HTML);
}

/*logo*/
function logo(){
	var HTML ="";
	HTML += '<div class="left"><img src="'+pass+'img/logo.jpg" width="364" height="86" alt="ONE DRAFT" /></div>';
	HTML += '<div class="left"><img src="'+pass+'img/logo_right.jpg" width="536" height="86" alt="" /></div>';
	HTML += '<br class="clear" />';
	
	document.write(HTML);
}