//##########################################
// RenaART - Java Script
// http://www.renaart.com/
//==========================================
// [ MENU JS ] /js/menu.js
// Revision : 1.0
//==========================================
// Coded by Seiichi Sakuraba
// Copyright (c) 2005 tokyo*anagram
// http;//www.tokyoanagram.com/
//##########################################

function menu() {
	var URLString = location;
	
	document.write( "<div id=\"layoutHeaderMenuTop\">" );
	
	if ( URLString == "http://renaart.exblog.jp/" ) {
		document.write( "<img src=\"/images/top_menu_news_s.gif\" width=\"80\" height=\"25\" alt=\"News - 最新情報\" class=\"topMenu\" id=\"top_menu_news\" />" );
	}  else  {
		document.write( "<a href=\"http://renaart.exblog.jp/\" target=\"_blank\" onmouseover=\"menuOver('top_menu_news');\" onmouseout=\"menuOut('top_menu_news')\"><img src=\"/images/top_menu_news.gif\" width=\"80\" height=\"25\" alt=\"News - 最新情報\" class=\"topMenu\" id=\"top_menu_news\" /></a>" );
	}
	
	if ( URLString == "http://www.renaart.com/profile/" ) {
		document.write( "<img src=\"/images/top_menu_profile_s.gif\" width=\"80\" height=\"25\" alt=\"Profile - プロフィール\" class=\"topMenu\" id=\"top_menu_profile\" />" );
	}  else  {
		document.write( "<a href=\"/profile/\" onmouseover=\"menuOver('top_menu_profile');\" onmouseout=\"menuOut('top_menu_profile')\"><img src=\"/images/top_menu_profile.gif\" width=\"80\" height=\"25\" alt=\"Profile - プロフィール\" class=\"topMenu\" id=\"top_menu_profile\" /></a>" );
	}
	
	if ( URLString == "http://www.renaart.com/works/" ) {
		document.write( "<img src=\"/images/top_menu_works_s.gif\" width=\"80\" height=\"25\" alt=\"Works - 過去の実績紹介\" class=\"topMenu\" id=\"top_menu_works\" />" );
	}  else  {
		document.write( "<a href=\"/works/\" onmouseover=\"menuOver('top_menu_works');\" onmouseout=\"menuOut('top_menu_works')\"><img src=\"/images/top_menu_works.gif\" width=\"80\" height=\"25\" alt=\"Works - 過去の実績紹介\" class=\"topMenu\" id=\"top_menu_works\" /></a>" );
	}
	
	if ( URLString == "http://www.renaart.com/diary/" ) {
		document.write( "<img src=\"/images/top_menu_diary_s.gif\" width=\"80\" height=\"25\" alt=\"Diary - 日記\" class=\"topMenu\" id=\"top_menu_diary\" />" );
	}  else  {
		document.write( "<a href=\"http://renaart.exblog.jp/\" target=\"_blank\" onmouseover=\"menuOver('top_menu_diary');\" onmouseout=\"menuOut('top_menu_diary')\"><img src=\"/images/top_menu_diary.gif\" width=\"80\" height=\"25\" alt=\"Diary - 日記\" class=\"topMenu\" id=\"top_menu_diary\" /></a>" );
	}
	
	document.write( "</div><div id=\"layoutHeaderMenuBottom\">" );
	
	if ( URLString == "http://www.renaart.com/order/" ) {
		document.write( "<img src=\"/images/top_menu_order_s.gif\" width=\"80\" height=\"25\" alt=\"Order - 制作依頼\" class=\"topMenu\" id=\"top_menu_order\" />" );
	}  else  {
		document.write( "<a href=\"/order/\" onmouseover=\"menuOver('top_menu_order');\" onmouseout=\"menuOut('top_menu_order')\"><img src=\"/images/top_menu_order.gif\" width=\"80\" height=\"25\" alt=\"Order - 制作依頼\" class=\"topMenu\" id=\"top_menu_order\" /></a>" );
	}
	
	if ( URLString == "http://www.renaart.com/movies/" ) {
		document.write( "<img src=\"/images/top_menu_movies_s.gif\" width=\"80\" height=\"25\" alt=\"Movies - 映像\" class=\"topMenu\" id=\"top_menu_movies\" />" );
	}  else  {
		document.write( "<a href=\"/movies/\" onmouseover=\"menuOver('top_menu_movies');\" onmouseout=\"menuOut('top_menu_movies')\"><img src=\"/images/top_menu_movies.gif\" width=\"80\" height=\"25\" alt=\"Movies - 映像\" class=\"topMenu\" id=\"top_menu_movies\" /></a>" );
	}
	
	if ( URLString == "http://www.renaart.com/links/" ) {
		document.write( "<img src=\"/images/top_menu_links_s.gif\" width=\"80\" height=\"25\" alt=\"Links - リンク\" class=\"topMenu\" id=\"top_menu_links\" />" );
	}  else  {
		document.write( "<a href=\"/links/\" onmouseover=\"menuOver('top_menu_links');\" onmouseout=\"menuOut('top_menu_links')\"><img src=\"/images/top_menu_links.gif\" width=\"80\" height=\"25\" alt=\"Links - リンク\" class=\"topMenu\" id=\"top_menu_links\" /></a>" );
	}
	
	if ( URLString == "http://www.renaart.com/system/cgi/bbs/bbs.cgi" ) {
		document.write( "<img src=\"/images/top_menu_bbs_s.gif\" width=\"80\" height=\"25\" alt=\"BBS - 掲示版\" class=\"topMenu\" id=\"top_menu_bbs\" />" );
	}  else  {
		document.write( "<a href=\"#\"  onmouseover=\"menuOver('top_menu_bbs');\" onmouseout=\"menuOut('top_menu_bbs')\"><img src=\"/images/top_menu_bbs.gif\" width=\"80\" height=\"25\" alt=\"BBS - 掲示版\" class=\"topMenu\" id=\"top_menu_bbs\" /></a>" );
	}
	
	document.write( "</div>" );
}

